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 1389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1400 message_center::switches::kEnableExperimentalNotificationUI) | 1400 message_center::switches::kEnableExperimentalNotificationUI) |
1401 }, | 1401 }, |
1402 { | 1402 { |
1403 "enable-sync-synced-notifications", | 1403 "enable-sync-synced-notifications", |
1404 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, | 1404 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, |
1405 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, | 1405 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, |
1406 kOsDesktop, | 1406 kOsDesktop, |
1407 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, | 1407 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, |
1408 switches::kDisableSyncSyncedNotifications) | 1408 switches::kDisableSyncSyncedNotifications) |
1409 }, | 1409 }, |
| 1410 #if defined(ENABLE_APP_LIST) |
| 1411 { |
| 1412 "enable-sync-app-list", |
| 1413 IDS_FLAGS_ENABLE_SYNC_APP_LIST_NAME, |
| 1414 IDS_FLAGS_ENABLE_SYNC_APP_LIST_DESCRIPTION, |
| 1415 kOsDesktop, |
| 1416 SINGLE_VALUE_TYPE(switches::kEnableSyncAppList) |
| 1417 }, |
| 1418 #endif |
1410 { | 1419 { |
1411 "disable-full-history-sync", | 1420 "disable-full-history-sync", |
1412 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, | 1421 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, |
1413 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, | 1422 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, |
1414 kOsAll, | 1423 kOsAll, |
1415 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync) | 1424 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync) |
1416 }, | 1425 }, |
1417 { | 1426 { |
1418 "enable-usermedia-screen-capture", | 1427 "enable-usermedia-screen-capture", |
1419 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME, | 1428 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME, |
(...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2464 } | 2473 } |
2465 | 2474 |
2466 const Experiment* GetExperiments(size_t* count) { | 2475 const Experiment* GetExperiments(size_t* count) { |
2467 *count = num_experiments; | 2476 *count = num_experiments; |
2468 return experiments; | 2477 return experiments; |
2469 } | 2478 } |
2470 | 2479 |
2471 } // namespace testing | 2480 } // namespace testing |
2472 | 2481 |
2473 } // namespace about_flags | 2482 } // namespace about_flags |
OLD | NEW |