| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "cloud-print-proxy", // Do not change; see above. | 94 "cloud-print-proxy", // Do not change; see above. |
| 95 IDS_FLAGS_CLOUD_PRINT_PROXY_NAME, | 95 IDS_FLAGS_CLOUD_PRINT_PROXY_NAME, |
| 96 IDS_FLAGS_CLOUD_PRINT_PROXY_DESCRIPTION, | 96 IDS_FLAGS_CLOUD_PRINT_PROXY_DESCRIPTION, |
| 97 kOsWin, | 97 kOsWin, |
| 98 switches::kEnableCloudPrintProxy | 98 switches::kEnableCloudPrintProxy |
| 99 }, | 99 }, |
| 100 { | 100 { |
| 101 "match-preview", // Do not change; see above. | 101 "match-preview", // Do not change; see above. |
| 102 IDS_FLAGS_PREDICTIVE_INSTANT_NAME, | 102 IDS_FLAGS_PREDICTIVE_INSTANT_NAME, |
| 103 IDS_FLAGS_PREDICTIVE_INSTANT_DESCRIPTION, | 103 IDS_FLAGS_PREDICTIVE_INSTANT_DESCRIPTION, |
| 104 kOsMac | kOsLinux, | 104 kOsMac, |
| 105 switches::kEnablePredictiveInstant | 105 switches::kEnablePredictiveInstant |
| 106 }, | 106 }, |
| 107 { | 107 { |
| 108 "verbatim-instant", // Do not change; see above. | 108 "verbatim-instant", // Do not change; see above. |
| 109 IDS_FLAGS_VERBATIM_INSTANT_NAME, | 109 IDS_FLAGS_VERBATIM_INSTANT_NAME, |
| 110 IDS_FLAGS_VERBATIM_INSTANT_DESCRIPTION, | 110 IDS_FLAGS_VERBATIM_INSTANT_DESCRIPTION, |
| 111 kOsMac | kOsLinux | kOsWin, | 111 kOsMac | kOsLinux | kOsWin, |
| 112 switches::kEnableVerbatimInstant | 112 switches::kEnableVerbatimInstant |
| 113 }, | 113 }, |
| 114 // FIXME(scheib): Add Flags entry for accelerated Compositing, | 114 // FIXME(scheib): Add Flags entry for accelerated Compositing, |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 num_experiments = arraysize(kExperiments); | 409 num_experiments = arraysize(kExperiments); |
| 410 } else { | 410 } else { |
| 411 experiments = e; | 411 experiments = e; |
| 412 num_experiments = count; | 412 num_experiments = count; |
| 413 } | 413 } |
| 414 } | 414 } |
| 415 | 415 |
| 416 } // namespace testing | 416 } // namespace testing |
| 417 | 417 |
| 418 } // namespace about_flags | 418 } // namespace about_flags |
| OLD | NEW |