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 1342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1353 { | 1353 { |
1354 "enable-cloud-print-xps", | 1354 "enable-cloud-print-xps", |
1355 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_NAME, | 1355 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_NAME, |
1356 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_DESCRIPTION, | 1356 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_DESCRIPTION, |
1357 kOsWin, | 1357 kOsWin, |
1358 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintXps) | 1358 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintXps) |
1359 }, | 1359 }, |
1360 #endif | 1360 #endif |
1361 #if defined(OS_MACOSX) | 1361 #if defined(OS_MACOSX) |
1362 { | 1362 { |
1363 "disable-app-shims", | |
1364 IDS_FLAGS_DISABLE_APP_SHIMS_NAME, | |
1365 IDS_FLAGS_DISABLE_APP_SHIMS_DESCRIPTION, | |
1366 kOsMac, | |
1367 SINGLE_VALUE_TYPE(switches::kDisableAppShims) | |
1368 }, | |
1369 { | |
1370 "enable-simplified-fullscreen", | 1363 "enable-simplified-fullscreen", |
1371 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_NAME, | 1364 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_NAME, |
1372 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_DESCRIPTION, | 1365 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_DESCRIPTION, |
1373 kOsMac, | 1366 kOsMac, |
1374 SINGLE_VALUE_TYPE(switches::kEnableSimplifiedFullscreen) | 1367 SINGLE_VALUE_TYPE(switches::kEnableSimplifiedFullscreen) |
1375 }, | 1368 }, |
1376 #endif | 1369 #endif |
1377 #if defined(USE_AURA) | 1370 #if defined(USE_AURA) |
1378 { | 1371 { |
1379 "tab-capture-upscale-quality", | 1372 "tab-capture-upscale-quality", |
(...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2376 } | 2369 } |
2377 | 2370 |
2378 const Experiment* GetExperiments(size_t* count) { | 2371 const Experiment* GetExperiments(size_t* count) { |
2379 *count = num_experiments; | 2372 *count = num_experiments; |
2380 return experiments; | 2373 return experiments; |
2381 } | 2374 } |
2382 | 2375 |
2383 } // namespace testing | 2376 } // namespace testing |
2384 | 2377 |
2385 } // namespace about_flags | 2378 } // namespace about_flags |
OLD | NEW |