Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(814)

Side by Side Diff: chrome/browser/about_flags.cc

Issue 10823220: Show --enable-pnacl in about:flags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 SINGLE_VALUE_TYPE(switches::kNaClGdb) 339 SINGLE_VALUE_TYPE(switches::kNaClGdb)
340 }, 340 },
341 { 341 {
342 "nacl-gdb-script", // FLAGS:RECORD_UMA 342 "nacl-gdb-script", // FLAGS:RECORD_UMA
343 IDS_FLAGS_NACL_GDB_SCRIPT_NAME, 343 IDS_FLAGS_NACL_GDB_SCRIPT_NAME,
344 IDS_FLAGS_NACL_GDB_SCRIPT_DESCRIPTION, 344 IDS_FLAGS_NACL_GDB_SCRIPT_DESCRIPTION,
345 kOsAll, 345 kOsAll,
346 SINGLE_VALUE_TYPE(switches::kNaClGdbScript) 346 SINGLE_VALUE_TYPE(switches::kNaClGdbScript)
347 }, 347 },
348 { 348 {
349 "enable-pnacl", // FLAGS:RECORD_UMA
350 IDS_FLAGS_ENABLE_PNACL_NAME,
351 IDS_FLAGS_ENABLE_PNACL_DESCRIPTION,
352 kOsAll,
353 SINGLE_VALUE_TYPE(switches::kEnablePnacl)
354 },
355 {
349 "extension-apis", // FLAGS:RECORD_UMA 356 "extension-apis", // FLAGS:RECORD_UMA
350 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_NAME, 357 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_NAME,
351 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_DESCRIPTION, 358 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_DESCRIPTION,
352 kOsAll, 359 kOsAll,
353 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis) 360 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis)
354 }, 361 },
355 { 362 {
356 "action-box", 363 "action-box",
357 IDS_FLAGS_ACTION_BOX_NAME, 364 IDS_FLAGS_ACTION_BOX_NAME,
358 IDS_FLAGS_ACTION_BOX_DESCRIPTION, 365 IDS_FLAGS_ACTION_BOX_DESCRIPTION,
(...skipping 968 matching lines...) Expand 10 before | Expand all | Expand 10 after
1327 } 1334 }
1328 1335
1329 const Experiment* GetExperiments(size_t* count) { 1336 const Experiment* GetExperiments(size_t* count) {
1330 *count = num_experiments; 1337 *count = num_experiments;
1331 return experiments; 1338 return experiments;
1332 } 1339 }
1333 1340
1334 } // namespace testing 1341 } // namespace testing
1335 1342
1336 } // namespace about_flags 1343 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698