summaryrefslogtreecommitdiffstats
path: root/sync/util
diff options
context:
space:
mode:
authorzea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-30 02:27:29 +0000
committerzea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-30 02:27:29 +0000
commitfcd3a7a671ecf2d5f46ea34787d27507a914d2f5 (patch)
treec65595bf09f2c9752eb4c453ba1e193052d75bc0 /sync/util
parent4291d518d20c146646b92e1908adad292a0ed4e4 (diff)
downloadchromium_src-fcd3a7a671ecf2d5f46ea34787d27507a914d2f5.zip
chromium_src-fcd3a7a671ecf2d5f46ea34787d27507a914d2f5.tar.gz
chromium_src-fcd3a7a671ecf2d5f46ea34787d27507a914d2f5.tar.bz2
[Sync] Cleanup all tab sync enabling logic now that its on by default.
BUG=none TEST= Review URL: https://chromiumcodereview.appspot.com/10443046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139462 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/util')
-rw-r--r--sync/util/experiments.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/sync/util/experiments.h b/sync/util/experiments.h
index 7cd77af..21b3437 100644
--- a/sync/util/experiments.h
+++ b/sync/util/experiments.h
@@ -12,16 +12,12 @@ namespace browser_sync {
// A structure to hold the enable status of experimental sync features.
struct Experiments {
- Experiments() : sync_tabs(false), sync_tab_favicons(false) {}
+ Experiments() : sync_tab_favicons(false) {}
bool Matches(const Experiments& rhs) {
- return (sync_tabs == rhs.sync_tabs) &&
- (sync_tab_favicons == rhs.sync_tab_favicons);
+ return (sync_tab_favicons == rhs.sync_tab_favicons);
}
- // Enable the tab sync (SESSIONS) datatype.
- bool sync_tabs;
-
// Enable syncing of favicons within tab sync (only has an effect if tab sync
// is already enabled). This takes effect on the next restart.
bool sync_tab_favicons;