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

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

Issue 20593003: Move kEnableExperimentalExtensionApis switch to extensions/common/switches.cc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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 | « no previous file | chrome/browser/accessibility/accessibility_extension_apitest.cc » ('j') | 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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 IDS_FLAGS_PNACL_NAME, 532 IDS_FLAGS_PNACL_NAME,
533 IDS_FLAGS_PNACL_DESCRIPTION, 533 IDS_FLAGS_PNACL_DESCRIPTION,
534 kOsDesktop, 534 kOsDesktop,
535 ENABLE_DISABLE_VALUE_TYPE("", switches::kDisablePnacl) 535 ENABLE_DISABLE_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(extensions::switches::kEnableExperimentalExtensionApis)
543 }, 543 },
544 { 544 {
545 "extensions-on-chrome-urls", 545 "extensions-on-chrome-urls",
546 IDS_FLAGS_EXTENSIONS_ON_CHROME_URLS_NAME, 546 IDS_FLAGS_EXTENSIONS_ON_CHROME_URLS_NAME,
547 IDS_FLAGS_EXTENSIONS_ON_CHROME_URLS_DESCRIPTION, 547 IDS_FLAGS_EXTENSIONS_ON_CHROME_URLS_DESCRIPTION,
548 kOsAll, 548 kOsAll,
549 SINGLE_VALUE_TYPE(extensions::switches::kExtensionsOnChromeURLs) 549 SINGLE_VALUE_TYPE(extensions::switches::kExtensionsOnChromeURLs)
550 }, 550 },
551 { 551 {
552 "enable-fast-unload", 552 "enable-fast-unload",
(...skipping 1574 matching lines...) Expand 10 before | Expand all | Expand 10 after
2127 } 2127 }
2128 2128
2129 const Experiment* GetExperiments(size_t* count) { 2129 const Experiment* GetExperiments(size_t* count) {
2130 *count = num_experiments; 2130 *count = num_experiments;
2131 return experiments; 2131 return experiments;
2132 } 2132 }
2133 2133
2134 } // namespace testing 2134 } // namespace testing
2135 2135
2136 } // namespace about_flags 2136 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/accessibility/accessibility_extension_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698