OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 { | 167 { |
168 "print-preview", // FLAGS:RECORD_UMA | 168 "print-preview", // FLAGS:RECORD_UMA |
169 IDS_FLAGS_PRINT_PREVIEW_NAME, | 169 IDS_FLAGS_PRINT_PREVIEW_NAME, |
170 IDS_FLAGS_PRINT_PREVIEW_DESCRIPTION, | 170 IDS_FLAGS_PRINT_PREVIEW_DESCRIPTION, |
171 kOsAll, | 171 kOsAll, |
172 SINGLE_VALUE_TYPE(switches::kEnablePrintPreview) | 172 SINGLE_VALUE_TYPE(switches::kEnablePrintPreview) |
173 }, | 173 }, |
174 #endif | 174 #endif |
175 // TODO(dspringer): When NaCl is on by default, remove this flag entry. | 175 // TODO(dspringer): When NaCl is on by default, remove this flag entry. |
176 { | 176 { |
177 switches::kEnableNaCl, // FLAGS:RECORD_UMA | 177 "enable-nacl", // FLAGS:RECORD_UMA |
178 IDS_FLAGS_ENABLE_NACL_NAME, | 178 IDS_FLAGS_ENABLE_NACL_NAME, |
179 IDS_FLAGS_ENABLE_NACL_DESCRIPTION, | 179 IDS_FLAGS_ENABLE_NACL_DESCRIPTION, |
180 kOsAll, | 180 kOsAll, |
181 SINGLE_VALUE_TYPE(switches::kEnableNaCl) | 181 SINGLE_VALUE_TYPE(switches::kEnableNaCl) |
182 }, | 182 }, |
183 { | 183 { |
184 "extension-apis", // FLAGS:RECORD_UMA | 184 "extension-apis", // FLAGS:RECORD_UMA |
185 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_NAME, | 185 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_NAME, |
186 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_DESCRIPTION, | 186 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_DESCRIPTION, |
187 kOsAll, | 187 kOsAll, |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 } | 788 } |
789 | 789 |
790 const Experiment* GetExperiments(size_t* count) { | 790 const Experiment* GetExperiments(size_t* count) { |
791 *count = num_experiments; | 791 *count = num_experiments; |
792 return experiments; | 792 return experiments; |
793 } | 793 } |
794 | 794 |
795 } // namespace testing | 795 } // namespace testing |
796 | 796 |
797 } // namespace about_flags | 797 } // namespace about_flags |
OLD | NEW |