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 1335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1346 { | 1346 { |
1347 "enable-cloud-print-xps", | 1347 "enable-cloud-print-xps", |
1348 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_NAME, | 1348 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_NAME, |
1349 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_DESCRIPTION, | 1349 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_DESCRIPTION, |
1350 kOsWin, | 1350 kOsWin, |
1351 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintXps) | 1351 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintXps) |
1352 }, | 1352 }, |
1353 #endif | 1353 #endif |
1354 #if defined(OS_MACOSX) | 1354 #if defined(OS_MACOSX) |
1355 { | 1355 { |
1356 "disable-app-shims", | |
1357 IDS_FLAGS_DISABLE_APP_SHIMS_NAME, | |
1358 IDS_FLAGS_DISABLE_APP_SHIMS_DESCRIPTION, | |
1359 kOsMac, | |
1360 SINGLE_VALUE_TYPE(switches::kDisableAppShims) | |
1361 }, | |
1362 { | |
1363 "enable-simplified-fullscreen", | 1356 "enable-simplified-fullscreen", |
1364 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_NAME, | 1357 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_NAME, |
1365 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_DESCRIPTION, | 1358 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_DESCRIPTION, |
1366 kOsMac, | 1359 kOsMac, |
1367 SINGLE_VALUE_TYPE(switches::kEnableSimplifiedFullscreen) | 1360 SINGLE_VALUE_TYPE(switches::kEnableSimplifiedFullscreen) |
1368 }, | 1361 }, |
1369 #endif | 1362 #endif |
1370 #if defined(USE_AURA) | 1363 #if defined(USE_AURA) |
1371 { | 1364 { |
1372 "tab-capture-upscale-quality", | 1365 "tab-capture-upscale-quality", |
(...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2369 } | 2362 } |
2370 | 2363 |
2371 const Experiment* GetExperiments(size_t* count) { | 2364 const Experiment* GetExperiments(size_t* count) { |
2372 *count = num_experiments; | 2365 *count = num_experiments; |
2373 return experiments; | 2366 return experiments; |
2374 } | 2367 } |
2375 | 2368 |
2376 } // namespace testing | 2369 } // namespace testing |
2377 | 2370 |
2378 } // namespace about_flags | 2371 } // namespace about_flags |
OLD | NEW |