OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/about_flags.h" | 5 #include "chrome/browser/about_flags.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <iterator> | 8 #include <iterator> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 1274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1285 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION, | 1285 IDS_FLAGS_ENABLE_RICH_NOTIFICATIONS_DESCRIPTION, |
1286 kOsWin | kOsCrOS | kOsMac, | 1286 kOsWin | kOsCrOS | kOsMac, |
1287 ENABLE_DISABLE_VALUE_TYPE( | 1287 ENABLE_DISABLE_VALUE_TYPE( |
1288 message_center::switches::kEnableRichNotifications, | 1288 message_center::switches::kEnableRichNotifications, |
1289 message_center::switches::kDisableRichNotifications) | 1289 message_center::switches::kDisableRichNotifications) |
1290 }, | 1290 }, |
1291 { | 1291 { |
1292 "enable-sync-synced-notifications", | 1292 "enable-sync-synced-notifications", |
1293 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, | 1293 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, |
1294 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, | 1294 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, |
1295 kOsWin | kOsCrOS, | 1295 kOsDesktop, |
1296 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, | 1296 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, |
1297 switches::kDisableSyncSyncedNotifications) | 1297 switches::kDisableSyncSyncedNotifications) |
1298 }, | 1298 }, |
1299 { | 1299 { |
1300 "disable-full-history-sync", | 1300 "disable-full-history-sync", |
1301 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, | 1301 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, |
1302 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, | 1302 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, |
1303 kOsAll, | 1303 kOsAll, |
1304 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync) | 1304 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync) |
1305 }, | 1305 }, |
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1944 } | 1944 } |
1945 | 1945 |
1946 const Experiment* GetExperiments(size_t* count) { | 1946 const Experiment* GetExperiments(size_t* count) { |
1947 *count = num_experiments; | 1947 *count = num_experiments; |
1948 return experiments; | 1948 return experiments; |
1949 } | 1949 } |
1950 | 1950 |
1951 } // namespace testing | 1951 } // namespace testing |
1952 | 1952 |
1953 } // namespace about_flags | 1953 } // namespace about_flags |
OLD | NEW |