OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_BOOKMARKS_ENHANCED_BOOKMARKS_FEATURES_H_ | 5 #ifndef CHROME_BROWSER_BOOKMARKS_ENHANCED_BOOKMARKS_FEATURES_H_ |
6 #define CHROME_BROWSER_BOOKMARKS_ENHANCED_BOOKMARKS_FEATURES_H_ | 6 #define CHROME_BROWSER_BOOKMARKS_ENHANCED_BOOKMARKS_FEATURES_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "extensions/common/extension.h" | 10 #include "build/build_config.h" |
11 | 11 |
12 namespace about_flags { | 12 namespace about_flags { |
13 class FlagsStorage; | 13 class FlagsStorage; |
14 } // namespace about_flags | 14 } // namespace about_flags |
15 | 15 |
16 class PrefService; | 16 class PrefService; |
17 class Profile; | 17 class Profile; |
18 | 18 |
19 // States for bookmark experiment. They are set by Chrome sync into | 19 // States for bookmark experiment. They are set by Chrome sync into |
20 // sync_driver::prefs::kEnhancedBookmarksExperimentEnabled user preference and | 20 // sync_driver::prefs::kEnhancedBookmarksExperimentEnabled user preference and |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 // Returns true when flag enable-dom-distiller is set or enabled from Finch. | 74 // Returns true when flag enable-dom-distiller is set or enabled from Finch. |
75 bool IsEnableDomDistillerSet(); | 75 bool IsEnableDomDistillerSet(); |
76 | 76 |
77 // Returns true when flag enable-sync-articles is set or enabled from Finch. | 77 // Returns true when flag enable-sync-articles is set or enabled from Finch. |
78 bool IsEnableSyncArticlesSet(); | 78 bool IsEnableSyncArticlesSet(); |
79 | 79 |
80 // Returns true if sync of enhanced bookmarks is enabled. | 80 // Returns true if sync of enhanced bookmarks is enabled. |
81 bool IsEnhancedBookmarksSyncEnabled(); | 81 bool IsEnhancedBookmarksSyncEnabled(); |
82 | 82 |
83 #endif // CHROME_BROWSER_BOOKMARKS_ENHANCED_BOOKMARKS_FEATURES_H_ | 83 #endif // CHROME_BROWSER_BOOKMARKS_ENHANCED_BOOKMARKS_FEATURES_H_ |
OLD | NEW |