| 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 <iterator> | 7 #include <iterator> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 1411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1422 {"enable-iframe-based-signin", | 1422 {"enable-iframe-based-signin", |
| 1423 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_NAME, | 1423 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_NAME, |
| 1424 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_DESCRIPTION, | 1424 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_DESCRIPTION, |
| 1425 kOsMac | kOsWin | kOsLinux, | 1425 kOsMac | kOsWin | kOsLinux, |
| 1426 SINGLE_VALUE_TYPE(switches::kEnableIframeBasedSignin)}, | 1426 SINGLE_VALUE_TYPE(switches::kEnableIframeBasedSignin)}, |
| 1427 {"enable-google-profile-info", | 1427 {"enable-google-profile-info", |
| 1428 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, | 1428 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, |
| 1429 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, | 1429 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, |
| 1430 kOsMac | kOsWin | kOsLinux, | 1430 kOsMac | kOsWin | kOsLinux, |
| 1431 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo)}, | 1431 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo)}, |
| 1432 #if defined(ENABLE_EXTENSIONS) | |
| 1433 {"enable-surface-worker", | |
| 1434 IDS_FLAGS_ENABLE_SURFACE_WORKER_NAME, | |
| 1435 IDS_FLAGS_ENABLE_SURFACE_WORKER_DESCRIPTION, | |
| 1436 kOsDesktop, | |
| 1437 SINGLE_VALUE_TYPE(extensions::switches::kEnableSurfaceWorker)}, | |
| 1438 #endif | |
| 1439 #if defined(ENABLE_APP_LIST) | 1432 #if defined(ENABLE_APP_LIST) |
| 1440 {"reset-app-list-install-state", | 1433 {"reset-app-list-install-state", |
| 1441 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME, | 1434 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME, |
| 1442 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION, | 1435 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION, |
| 1443 kOsMac | kOsWin | kOsLinux, | 1436 kOsMac | kOsWin | kOsLinux, |
| 1444 SINGLE_VALUE_TYPE(app_list::switches::kResetAppListInstallState)}, | 1437 SINGLE_VALUE_TYPE(app_list::switches::kResetAppListInstallState)}, |
| 1445 {"disable-drive-apps-in-app-list", | 1438 {"disable-drive-apps-in-app-list", |
| 1446 IDS_FLAGS_DISABLE_DRIVE_APPS_IN_APP_LIST_NAME, | 1439 IDS_FLAGS_DISABLE_DRIVE_APPS_IN_APP_LIST_NAME, |
| 1447 IDS_FLAGS_DISABLE_DRIVE_APPS_IN_APP_LIST_DESCRIPTION, | 1440 IDS_FLAGS_DISABLE_DRIVE_APPS_IN_APP_LIST_DESCRIPTION, |
| 1448 kOsCrOS, | 1441 kOsCrOS, |
| (...skipping 1331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2780 } | 2773 } |
| 2781 | 2774 |
| 2782 const Experiment* GetExperiments(size_t* count) { | 2775 const Experiment* GetExperiments(size_t* count) { |
| 2783 *count = num_experiments; | 2776 *count = num_experiments; |
| 2784 return experiments; | 2777 return experiments; |
| 2785 } | 2778 } |
| 2786 | 2779 |
| 2787 } // namespace testing | 2780 } // namespace testing |
| 2788 | 2781 |
| 2789 } // namespace about_flags | 2782 } // namespace about_flags |
| OLD | NEW |