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

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

Issue 19079002: Enable pnacl by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update with code review feedback. Created 7 years, 5 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
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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 SINGLE_VALUE_TYPE(switches::kEnableNaClDebug) 521 SINGLE_VALUE_TYPE(switches::kEnableNaClDebug)
522 }, 522 },
523 { 523 {
524 "nacl-debug-mask", // FLAGS:RECORD_UMA 524 "nacl-debug-mask", // FLAGS:RECORD_UMA
525 IDS_FLAGS_NACL_DEBUG_MASK_NAME, 525 IDS_FLAGS_NACL_DEBUG_MASK_NAME,
526 IDS_FLAGS_NACL_DEBUG_MASK_DESCRIPTION, 526 IDS_FLAGS_NACL_DEBUG_MASK_DESCRIPTION,
527 kOsDesktop, 527 kOsDesktop,
528 MULTI_VALUE_TYPE(kNaClDebugMaskChoices) 528 MULTI_VALUE_TYPE(kNaClDebugMaskChoices)
529 }, 529 },
530 { 530 {
531 "enable-pnacl", // FLAGS:RECORD_UMA 531 "disable-pnacl", // FLAGS:RECORD_UMA
532 IDS_FLAGS_ENABLE_PNACL_NAME, 532 IDS_FLAGS_DISABLE_PNACL_NAME,
533 IDS_FLAGS_ENABLE_PNACL_DESCRIPTION, 533 IDS_FLAGS_DISABLE_PNACL_DESCRIPTION,
534 kOsDesktop, 534 kOsDesktop,
535 SINGLE_VALUE_TYPE(switches::kEnablePnacl) 535 SINGLE_VALUE_TYPE(switches::kDisablePnacl)
536 }, 536 },
537 { 537 {
538 "extension-apis", // FLAGS:RECORD_UMA 538 "extension-apis", // FLAGS:RECORD_UMA
539 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_NAME, 539 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_NAME,
540 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_DESCRIPTION, 540 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_DESCRIPTION,
541 kOsDesktop, 541 kOsDesktop,
542 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis) 542 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis)
543 }, 543 },
544 { 544 {
545 "extensions-on-chrome-urls", 545 "extensions-on-chrome-urls",
(...skipping 1569 matching lines...) Expand 10 before | Expand all | Expand 10 after
2115 } 2115 }
2116 2116
2117 const Experiment* GetExperiments(size_t* count) { 2117 const Experiment* GetExperiments(size_t* count) {
2118 *count = num_experiments; 2118 *count = num_experiments;
2119 return experiments; 2119 return experiments;
2120 } 2120 }
2121 2121
2122 } // namespace testing 2122 } // namespace testing
2123 2123
2124 } // namespace about_flags 2124 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698