| 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 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1283 { | 1283 { |
| 1284 "enable-sync-synced-notifications", | 1284 "enable-sync-synced-notifications", |
| 1285 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, | 1285 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_NAME, |
| 1286 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, | 1286 IDS_FLAGS_ENABLE_SYNCED_NOTIFICATIONS_DESCRIPTION, |
| 1287 kOsDesktop, | 1287 kOsDesktop, |
| 1288 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, | 1288 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSyncSyncedNotifications, |
| 1289 switches::kDisableSyncSyncedNotifications) | 1289 switches::kDisableSyncSyncedNotifications) |
| 1290 }, | 1290 }, |
| 1291 #if defined(ENABLE_APP_LIST) | 1291 #if defined(ENABLE_APP_LIST) |
| 1292 { | 1292 { |
| 1293 "enable-sync-app-list", | 1293 "disable-sync-app-list", |
| 1294 IDS_FLAGS_ENABLE_SYNC_APP_LIST_NAME, | 1294 IDS_FLAGS_DISABLE_SYNC_APP_LIST_NAME, |
| 1295 IDS_FLAGS_ENABLE_SYNC_APP_LIST_DESCRIPTION, | 1295 IDS_FLAGS_DISABLE_SYNC_APP_LIST_DESCRIPTION, |
| 1296 kOsDesktop, | 1296 kOsDesktop, |
| 1297 SINGLE_VALUE_TYPE(switches::kEnableSyncAppList) | 1297 SINGLE_VALUE_TYPE(switches::kDisableSyncAppList) |
| 1298 }, | 1298 }, |
| 1299 #endif | 1299 #endif |
| 1300 { | 1300 { |
| 1301 "disable-full-history-sync", | 1301 "disable-full-history-sync", |
| 1302 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, | 1302 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, |
| 1303 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, | 1303 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, |
| 1304 kOsAll, | 1304 kOsAll, |
| 1305 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync) | 1305 SINGLE_VALUE_TYPE(switches::kHistoryDisableFullHistorySync) |
| 1306 }, | 1306 }, |
| 1307 { | 1307 { |
| (...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2407 } | 2407 } |
| 2408 | 2408 |
| 2409 const Experiment* GetExperiments(size_t* count) { | 2409 const Experiment* GetExperiments(size_t* count) { |
| 2410 *count = num_experiments; | 2410 *count = num_experiments; |
| 2411 return experiments; | 2411 return experiments; |
| 2412 } | 2412 } |
| 2413 | 2413 |
| 2414 } // namespace testing | 2414 } // namespace testing |
| 2415 | 2415 |
| 2416 } // namespace about_flags | 2416 } // namespace about_flags |
| OLD | NEW |