Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(573)

Unified Diff: sync/util/experiments.h

Issue 10534080: sync: move internal_api components used by chrome/browser into internal_api/public (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sync/util/DEPS ('k') | sync/util/immutable.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/util/experiments.h
diff --git a/sync/util/experiments.h b/sync/util/experiments.h
deleted file mode 100644
index 1439e2b6bbe3379972b7cc053f73298e44c41292..0000000000000000000000000000000000000000
--- a/sync/util/experiments.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef SYNC_UTIL_EXPERIMENTS_
-#define SYNC_UTIL_EXPERIMENTS_
-#pragma once
-
-#include "sync/internal_api/public/syncable/model_type.h"
-
-namespace browser_sync {
-
-// A structure to hold the enable status of experimental sync features.
-struct Experiments {
- Experiments() : sync_tab_favicons(false) {}
-
- bool Matches(const Experiments& rhs) {
- return (sync_tab_favicons == rhs.sync_tab_favicons);
- }
-
- // 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;
-};
-
-}
-
-#endif // SYNC_UTIL_EXPERIMENTS_
« no previous file with comments | « sync/util/DEPS ('k') | sync/util/immutable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698