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 1363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1374 "enable-apps-devtool-app", | 1374 "enable-apps-devtool-app", |
1375 IDS_FLAGS_ENABLE_APPS_DEVTOOL_APP_NAME, | 1375 IDS_FLAGS_ENABLE_APPS_DEVTOOL_APP_NAME, |
1376 IDS_FLAGS_ENABLE_APPS_DEVTOOL_APP_DESCRIPTION, | 1376 IDS_FLAGS_ENABLE_APPS_DEVTOOL_APP_DESCRIPTION, |
1377 kOsDesktop, | 1377 kOsDesktop, |
1378 SINGLE_VALUE_TYPE(switches::kAppsDevtool) | 1378 SINGLE_VALUE_TYPE(switches::kAppsDevtool) |
1379 }, | 1379 }, |
1380 { | 1380 { |
1381 "impl-side-painting", | 1381 "impl-side-painting", |
1382 IDS_FLAGS_IMPL_SIDE_PAINTING_NAME, | 1382 IDS_FLAGS_IMPL_SIDE_PAINTING_NAME, |
1383 IDS_FLAGS_IMPL_SIDE_PAINTING_DESCRIPTION, | 1383 IDS_FLAGS_IMPL_SIDE_PAINTING_DESCRIPTION, |
1384 kOsAndroid | kOsLinux | kOsCrOS, | 1384 kOsLinux | kOsCrOS, |
1385 MULTI_VALUE_TYPE(kImplSidePaintingChoices) | 1385 MULTI_VALUE_TYPE(kImplSidePaintingChoices) |
1386 }, | 1386 }, |
1387 { | 1387 { |
1388 "deadline-scheduling", | 1388 "deadline-scheduling", |
1389 IDS_FLAGS_DEADLINE_SCHEDULING_NAME, | 1389 IDS_FLAGS_DEADLINE_SCHEDULING_NAME, |
1390 IDS_FLAGS_DEADLINE_SCHEDULING_DESCRIPTION, | 1390 IDS_FLAGS_DEADLINE_SCHEDULING_DESCRIPTION, |
1391 kOsMac | kOsWin | kOsLinux | kOsCrOS | kOsAndroid, | 1391 kOsMac | kOsWin | kOsLinux | kOsCrOS | kOsAndroid, |
1392 MULTI_VALUE_TYPE(kDeadlineSchedulingChoices) | 1392 MULTI_VALUE_TYPE(kDeadlineSchedulingChoices) |
1393 }, | 1393 }, |
1394 { | 1394 { |
(...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2322 } | 2322 } |
2323 | 2323 |
2324 const Experiment* GetExperiments(size_t* count) { | 2324 const Experiment* GetExperiments(size_t* count) { |
2325 *count = num_experiments; | 2325 *count = num_experiments; |
2326 return experiments; | 2326 return experiments; |
2327 } | 2327 } |
2328 | 2328 |
2329 } // namespace testing | 2329 } // namespace testing |
2330 | 2330 |
2331 } // namespace about_flags | 2331 } // namespace about_flags |
OLD | NEW |