summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/sync_setup_wizard.h
diff options
context:
space:
mode:
authorzork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-18 20:40:25 +0000
committerzork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-18 20:40:25 +0000
commitc44a9d4aaff54ab651c380c134a950769e9e3898 (patch)
tree97a40eba5a94017c32be2292fa65f7f5066226f8 /chrome/browser/sync/sync_setup_wizard.h
parentfac63935827a5cdc34bea6e0c72ecde405e703a9 (diff)
downloadchromium_src-c44a9d4aaff54ab651c380c134a950769e9e3898.zip
chromium_src-c44a9d4aaff54ab651c380c134a950769e9e3898.tar.gz
chromium_src-c44a9d4aaff54ab651c380c134a950769e9e3898.tar.bz2
Change the sync dialog to use the Html version on Linux.
BUG=none TEST=Run chrome with --enable-sync. While bookmark sync is disabled, click on Wrench Menu->Sync My Bookmarks Review URL: http://codereview.chromium.org/402059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32389 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/sync_setup_wizard.h')
-rw-r--r--chrome/browser/sync/sync_setup_wizard.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/chrome/browser/sync/sync_setup_wizard.h b/chrome/browser/sync/sync_setup_wizard.h
index 7367b6c..685b5f0 100644
--- a/chrome/browser/sync/sync_setup_wizard.h
+++ b/chrome/browser/sync/sync_setup_wizard.h
@@ -7,12 +7,7 @@
#include "base/basictypes.h"
-#if defined(TOOLKIT_GTK)
-typedef struct _GtkWidget GtkWidget;
-typedef struct _GtkWindow GtkWindow;
-#else
class SyncSetupFlowContainer;
-#endif
class ProfileSyncService;
@@ -53,10 +48,6 @@ class SyncSetupWizard {
// if various buttons in the UI should be enabled or disabled.
bool IsVisible() const;
-#if defined(TOOLKIT_GTK)
- void set_visible(bool visible) { visible_ = visible; }
-#endif
-
private:
// If we just need to pop open an individual dialog, say to collect
// gaia credentials in the event of a steady-state auth failure, this is
@@ -69,14 +60,10 @@ class SyncSetupWizard {
ProfileSyncService* service_;
-#if defined(TOOLKIT_GTK)
- bool visible_;
-#else
// The use of ShowHtmlDialog and SyncSetupFlowContainer is disabled on Linux
// until BrowserShowHtmlDialog() is implemented.
// See: http://code.google.com/p/chromium/issues/detail?id=25260
SyncSetupFlowContainer* flow_container_;
-#endif
DISALLOW_COPY_AND_ASSIGN(SyncSetupWizard);
};