| 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 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 SINGLE_VALUE_TYPE(cc::switches::kEnablePerTilePainting) | 883 SINGLE_VALUE_TYPE(cc::switches::kEnablePerTilePainting) |
| 884 }, | 884 }, |
| 885 { | 885 { |
| 886 "enable-javascript-harmony", | 886 "enable-javascript-harmony", |
| 887 IDS_FLAGS_ENABLE_JAVASCRIPT_HARMONY_NAME, | 887 IDS_FLAGS_ENABLE_JAVASCRIPT_HARMONY_NAME, |
| 888 IDS_FLAGS_ENABLE_JAVASCRIPT_HARMONY_DESCRIPTION, | 888 IDS_FLAGS_ENABLE_JAVASCRIPT_HARMONY_DESCRIPTION, |
| 889 kOsAll, | 889 kOsAll, |
| 890 SINGLE_VALUE_TYPE_AND_VALUE(switches::kJavaScriptFlags, "--harmony") | 890 SINGLE_VALUE_TYPE_AND_VALUE(switches::kJavaScriptFlags, "--harmony") |
| 891 }, | 891 }, |
| 892 { | 892 { |
| 893 "enable-tab-browser-dragging", | |
| 894 IDS_FLAGS_ENABLE_TAB_BROWSER_DRAGGING_NAME, | |
| 895 IDS_FLAGS_ENABLE_TAB_BROWSER_DRAGGING_DESCRIPTION, | |
| 896 kOsWin, | |
| 897 SINGLE_VALUE_TYPE(switches::kTabBrowserDragging) | |
| 898 }, | |
| 899 { | |
| 900 "disable-restore-session-state", | 893 "disable-restore-session-state", |
| 901 IDS_FLAGS_DISABLE_RESTORE_SESSION_STATE_NAME, | 894 IDS_FLAGS_DISABLE_RESTORE_SESSION_STATE_NAME, |
| 902 IDS_FLAGS_DISABLE_RESTORE_SESSION_STATE_DESCRIPTION, | 895 IDS_FLAGS_DISABLE_RESTORE_SESSION_STATE_DESCRIPTION, |
| 903 kOsAll, | 896 kOsAll, |
| 904 SINGLE_VALUE_TYPE(switches::kDisableRestoreSessionState) | 897 SINGLE_VALUE_TYPE(switches::kDisableRestoreSessionState) |
| 905 }, | 898 }, |
| 906 { | 899 { |
| 907 "disable-software-rasterizer", | 900 "disable-software-rasterizer", |
| 908 IDS_FLAGS_DISABLE_SOFTWARE_RASTERIZER_NAME, | 901 IDS_FLAGS_DISABLE_SOFTWARE_RASTERIZER_NAME, |
| 909 IDS_FLAGS_DISABLE_SOFTWARE_RASTERIZER_DESCRIPTION, | 902 IDS_FLAGS_DISABLE_SOFTWARE_RASTERIZER_DESCRIPTION, |
| (...skipping 1554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2464 } | 2457 } |
| 2465 | 2458 |
| 2466 const Experiment* GetExperiments(size_t* count) { | 2459 const Experiment* GetExperiments(size_t* count) { |
| 2467 *count = num_experiments; | 2460 *count = num_experiments; |
| 2468 return experiments; | 2461 return experiments; |
| 2469 } | 2462 } |
| 2470 | 2463 |
| 2471 } // namespace testing | 2464 } // namespace testing |
| 2472 | 2465 |
| 2473 } // namespace about_flags | 2466 } // namespace about_flags |
| OLD | NEW |