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 1369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1380 message_center::switches::kEnableExperimentalNotificationUI) | 1380 message_center::switches::kEnableExperimentalNotificationUI) |
1381 }, | 1381 }, |
1382 { | 1382 { |
1383 "enable-sync-synced-notifications", | 1383 "enable-sync-synced-notifications", |
1384 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, | 1384 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, |
1385 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, | 1385 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, |
1386 kOsDesktop, | 1386 kOsDesktop, |
1387 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, | 1387 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, |
1388 switches::kDisableSyncSyncedNotifications) | 1388 switches::kDisableSyncSyncedNotifications) |
1389 }, | 1389 }, |
| 1390 #if defined(ENABLE_APP_LIST) |
| 1391 { |
| 1392 "enable-sync-app-list", |
| 1393 IDS_FLAGS_ENABLE_SYNC_APP_LIST_NAME, |
| 1394 IDS_FLAGS_ENABLE_SYNC_APP_LIST_DESCRIPTION, |
| 1395 kOsDesktop, |
| 1396 SINGLE_VALUE_TYPE(switches::kEnableSyncAppList) |
| 1397 }, |
| 1398 #endif |
1390 { | 1399 { |
1391 "disable-full-history-sync", | 1400 "disable-full-history-sync", |
1392 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, | 1401 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, |
1393 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, | 1402 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, |
1394 kOsAll, | 1403 kOsAll, |
1395 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync) | 1404 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync) |
1396 }, | 1405 }, |
1397 { | 1406 { |
1398 "enable-usermedia-screen-capture", | 1407 "enable-usermedia-screen-capture", |
1399 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME, | 1408 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME, |
(...skipping 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2455 } | 2464 } |
2456 | 2465 |
2457 const Experiment* GetExperiments(size_t* count) { | 2466 const Experiment* GetExperiments(size_t* count) { |
2458 *count = num_experiments; | 2467 *count = num_experiments; |
2459 return experiments; | 2468 return experiments; |
2460 } | 2469 } |
2461 | 2470 |
2462 } // namespace testing | 2471 } // namespace testing |
2463 | 2472 |
2464 } // namespace about_flags | 2473 } // namespace about_flags |
OLD | NEW |