diff options
author | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-21 18:18:39 +0000 |
---|---|---|
committer | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-21 18:18:39 +0000 |
commit | 5d8d79c73f2ed8b77241e90388ec286cc6e73132 (patch) | |
tree | e9c646dff99632d654e47bdf90e4b9075df3e7a4 /chrome/browser/sync/sync_setup_wizard.h | |
parent | ec62d3bd43fc9d581f59e383c4478001f622605f (diff) | |
download | chromium_src-5d8d79c73f2ed8b77241e90388ec286cc6e73132.zip chromium_src-5d8d79c73f2ed8b77241e90388ec286cc6e73132.tar.gz chromium_src-5d8d79c73f2ed8b77241e90388ec286cc6e73132.tar.bz2 |
Style and comment fixes for sync_setup_wizard_gtk.cc and sync_setup_wizard.h
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/292038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29672 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/sync_setup_wizard.h')
-rw-r--r-- | chrome/browser/sync/sync_setup_wizard.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/sync/sync_setup_wizard.h b/chrome/browser/sync/sync_setup_wizard.h index d8a0d95..cc7bd2b 100644 --- a/chrome/browser/sync/sync_setup_wizard.h +++ b/chrome/browser/sync/sync_setup_wizard.h @@ -54,7 +54,7 @@ class SyncSetupWizard { bool IsVisible() const; #if defined(OS_LINUX) - void SetVisible(bool visible) { visible_ = visible; } + void set_visible(bool visible) { visible_ = visible; } #endif private: @@ -72,6 +72,9 @@ class SyncSetupWizard { #if defined(OS_LINUX) 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 @@ -79,4 +82,3 @@ class SyncSetupWizard { }; #endif // CHROME_BROWSER_SYNC_SYNC_SETUP_WIZARD_H_ - |