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 1400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1411 message_center::switches::kEnableExperimentalNotificationUI) | 1411 message_center::switches::kEnableExperimentalNotificationUI) |
1412 }, | 1412 }, |
1413 { | 1413 { |
1414 "enable-sync-synced-notifications", | 1414 "enable-sync-synced-notifications", |
1415 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, | 1415 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, |
1416 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, | 1416 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, |
1417 kOsDesktop, | 1417 kOsDesktop, |
1418 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, | 1418 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, |
1419 switches::kDisableSyncSyncedNotifications) | 1419 switches::kDisableSyncSyncedNotifications) |
1420 }, | 1420 }, |
| 1421 #if defined(ENABLE_APP_LIST) |
| 1422 { |
| 1423 "enable-sync-app-list", |
| 1424 IDS_FLAGS_ENABLE_SYNC_APP_LIST_NAME, |
| 1425 IDS_FLAGS_ENABLE_SYNC_APP_LIST_DESCRIPTION, |
| 1426 kOsDesktop, |
| 1427 SINGLE_VALUE_TYPE(switches::kEnableSyncAppList) |
| 1428 }, |
| 1429 #endif |
1421 { | 1430 { |
1422 "disable-full-history-sync", | 1431 "disable-full-history-sync", |
1423 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, | 1432 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, |
1424 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, | 1433 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, |
1425 kOsAll, | 1434 kOsAll, |
1426 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync) | 1435 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync) |
1427 }, | 1436 }, |
1428 { | 1437 { |
1429 "enable-usermedia-screen-capture", | 1438 "enable-usermedia-screen-capture", |
1430 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME, | 1439 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME, |
(...skipping 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2469 } | 2478 } |
2470 | 2479 |
2471 const Experiment* GetExperiments(size_t* count) { | 2480 const Experiment* GetExperiments(size_t* count) { |
2472 *count = num_experiments; | 2481 *count = num_experiments; |
2473 return experiments; | 2482 return experiments; |
2474 } | 2483 } |
2475 | 2484 |
2476 } // namespace testing | 2485 } // namespace testing |
2477 | 2486 |
2478 } // namespace about_flags | 2487 } // namespace about_flags |
OLD | NEW |