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

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

Issue 75463005: Move more files from chrome/browser/nacl_host/ to components/nacl/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/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 662 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 673
674 // Enables panels (always on-top docked pop-up windows). 674 // Enables panels (always on-top docked pop-up windows).
675 const char kEnablePanels[] = "enable-panels"; 675 const char kEnablePanels[] = "enable-panels";
676 676
677 // Enables searching for people from the apps list search box. 677 // Enables searching for people from the apps list search box.
678 const char kDisablePeopleSearch[] = "disable-people-search"; 678 const char kDisablePeopleSearch[] = "disable-people-search";
679 679
680 // Disables the usage of Portable Native Client. 680 // Disables the usage of Portable Native Client.
681 const char kDisablePnacl[] = "disable-pnacl"; 681 const char kDisablePnacl[] = "disable-pnacl";
682 682
683 // Disables crash throttling for Portable Native Client.
684 const char kDisablePnaclCrashThrottling[] = "disable-pnacl-crash-throttling";
685
686 // Disables the installation of Portable Native Client.
687 const char kDisablePnaclInstall[] = "disable-pnacl-install";
688
689 // Enables the proactive populating of the disk cache with Web resources that 683 // Enables the proactive populating of the disk cache with Web resources that
690 // are likely to be needed in future page fetches. 684 // are likely to be needed in future page fetches.
691 const char kEnablePrecache[] = "enable-precache"; 685 const char kEnablePrecache[] = "enable-precache";
692 686
693 // Enable Privet local printing. 687 // Enable Privet local printing.
694 const char kEnablePrivetLocalPrinting[] = "enable-privet-local-printing"; 688 const char kEnablePrivetLocalPrinting[] = "enable-privet-local-printing";
695 689
696 // Enables tracking of tasks in profiler for viewing via about:profiler. 690 // Enables tracking of tasks in profiler for viewing via about:profiler.
697 // To predominantly disable tracking (profiling), use the command line switch: 691 // To predominantly disable tracking (profiling), use the command line switch:
698 // --enable-profiling=0 692 // --enable-profiling=0
(...skipping 935 matching lines...) Expand 10 before | Expand all | Expand 10 after
1634 1628
1635 // ----------------------------------------------------------------------------- 1629 // -----------------------------------------------------------------------------
1636 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1630 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1637 // 1631 //
1638 // You were going to just dump your switches here, weren't you? Instead, please 1632 // You were going to just dump your switches here, weren't you? Instead, please
1639 // put them in alphabetical order above, or in order inside the appropriate 1633 // put them in alphabetical order above, or in order inside the appropriate
1640 // ifdef at the bottom. The order should match the header. 1634 // ifdef at the bottom. The order should match the header.
1641 // ----------------------------------------------------------------------------- 1635 // -----------------------------------------------------------------------------
1642 1636
1643 } // namespace switches 1637 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698