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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 8348026: Add a component installer for Portable NaCl. Registration of installer is (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 2 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) 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/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 const char kEnableNTPBookmarkFeatures[] = "enable-ntp-bookmark-features"; 501 const char kEnableNTPBookmarkFeatures[] = "enable-ntp-bookmark-features";
502 502
503 // Enables content settings based on host *and* plug-in in the user 503 // Enables content settings based on host *and* plug-in in the user
504 // preferences. 504 // preferences.
505 const char kEnableResourceContentSettings[] = 505 const char kEnableResourceContentSettings[] =
506 "enable-resource-content-settings"; 506 "enable-resource-content-settings";
507 507
508 // Enables panels (always on-top docked pop-up windows). 508 // Enables panels (always on-top docked pop-up windows).
509 const char kEnablePanels[] = "enable-panels"; 509 const char kEnablePanels[] = "enable-panels";
510 510
511 // Enables the installation and usage of Portable Native Client.
512 const char kEnablePNaCl[] = "enable-pnacl";
513
511 // Enables speculative TCP/IP preconnection. 514 // Enables speculative TCP/IP preconnection.
512 const char kEnablePreconnect[] = "enable-preconnect"; 515 const char kEnablePreconnect[] = "enable-preconnect";
513 516
514 // Enables the IsSearchProviderInstalled and InstallSearchProvider with an 517 // Enables the IsSearchProviderInstalled and InstallSearchProvider with an
515 // extra parameter to indicate if the provider should be the default. 518 // extra parameter to indicate if the provider should be the default.
516 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; 519 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2";
517 520
518 // Enables the use of the ShortcutsProvider for autocomplete results. 521 // Enables the use of the ShortcutsProvider for autocomplete results.
519 const char kEnableShortcutsProvider[] = "enable-shortcuts-provider"; 522 const char kEnableShortcutsProvider[] = "enable-shortcuts-provider";
520 523
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
1267 1270
1268 // ----------------------------------------------------------------------------- 1271 // -----------------------------------------------------------------------------
1269 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1272 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1270 // 1273 //
1271 // You were going to just dump your switches here, weren't you? Instead, please 1274 // You were going to just dump your switches here, weren't you? Instead, please
1272 // put them in alphabetical order above, or in order inside the appropriate 1275 // put them in alphabetical order above, or in order inside the appropriate
1273 // ifdef at the bottom. The order should match the header. 1276 // ifdef at the bottom. The order should match the header.
1274 // ----------------------------------------------------------------------------- 1277 // -----------------------------------------------------------------------------
1275 1278
1276 } // namespace switches 1279 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698