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

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

Issue 3915002: Out of process Pepper (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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/common/chrome_switches.h ('k') | chrome/common/pepper_plugin_registry.h » ('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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 824
825 // Tells the plugin process the path of the plugin to load 825 // Tells the plugin process the path of the plugin to load
826 const char kPluginPath[] = "plugin-path"; 826 const char kPluginPath[] = "plugin-path";
827 827
828 // Causes the process to run as a plugin subprocess. 828 // Causes the process to run as a plugin subprocess.
829 const char kPluginProcess[] = "plugin"; 829 const char kPluginProcess[] = "plugin";
830 830
831 // Causes the plugin process to display a dialog on launch. 831 // Causes the plugin process to display a dialog on launch.
832 const char kPluginStartupDialog[] = "plugin-startup-dialog"; 832 const char kPluginStartupDialog[] = "plugin-startup-dialog";
833 833
834 // Runs PPAPI (Pepper) plugins out-of-process.
835 const char kPpapiOutOfProcess[] = "ppapi-out-of-process";
836
837 // Like kPluginLauncher for PPAPI plugins.
838 const char kPpapiPluginLauncher[] = "ppapi-plugin-launcher";
839
840 // Argument to the process type that indicates a PPAPI plugin process type.
841 const char kPpapiPluginProcess[] = "ppapi";
842
843 // Causes the PPAPI sub process to display a dialog on launch.
844 const char kPpapiStartupDialog[] = "ppapi-startup-dialog";
845
834 // Establishes a channel to the GPU process asynchronously and (re)launches it 846 // Establishes a channel to the GPU process asynchronously and (re)launches it
835 // if necessary when a renderer process starts. 847 // if necessary when a renderer process starts.
836 const char kPrelaunchGpuProcess[] = "prelaunch-gpu-process"; 848 const char kPrelaunchGpuProcess[] = "prelaunch-gpu-process";
837 849
838 // Prints the pages on the screen. 850 // Prints the pages on the screen.
839 const char kPrint[] = "print"; 851 const char kPrint[] = "print";
840 852
841 // Runs a single process for each site (i.e., group of pages from the same 853 // Runs a single process for each site (i.e., group of pages from the same
842 // registered domain) the user visits. We default to using a renderer process 854 // registered domain) the user visits. We default to using a renderer process
843 // for each site instance (i.e., group of pages from the same registered 855 // for each site instance (i.e., group of pages from the same registered
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
1266 1278
1267 // ----------------------------------------------------------------------------- 1279 // -----------------------------------------------------------------------------
1268 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1280 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1269 // 1281 //
1270 // You were going to just dump your switches here, weren't you? Instead, 1282 // You were going to just dump your switches here, weren't you? Instead,
1271 // please put them in alphabetical order above, or in order inside the 1283 // please put them in alphabetical order above, or in order inside the
1272 // appropriate ifdef at the bottom. The order should match the header. 1284 // appropriate ifdef at the bottom. The order should match the header.
1273 // ----------------------------------------------------------------------------- 1285 // -----------------------------------------------------------------------------
1274 1286
1275 } // namespace switches 1287 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/pepper_plugin_registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698