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

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

Issue 153002: NaCl-Chrome integration - step 1 (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/nacl_messages.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) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 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 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 // Path to the exe to run for the renderer and plugin subprocesses. 65 // Path to the exe to run for the renderer and plugin subprocesses.
66 const wchar_t kBrowserSubprocessPath[] = L"browser-subprocess-path"; 66 const wchar_t kBrowserSubprocessPath[] = L"browser-subprocess-path";
67 67
68 // Causes the process to run as a plugin subprocess. 68 // Causes the process to run as a plugin subprocess.
69 const wchar_t kPluginProcess[] = L"plugin"; 69 const wchar_t kPluginProcess[] = L"plugin";
70 70
71 // Causes the process to run as a worker subprocess. 71 // Causes the process to run as a worker subprocess.
72 const wchar_t kWorkerProcess[] = L"worker"; 72 const wchar_t kWorkerProcess[] = L"worker";
73 73
74 // Causes the process to run as a NativeClient's sel_ldr subprocess.
75 const wchar_t kNaClProcess[] = L"nacl";
76
74 // Causes the process to run as a utility subprocess. 77 // Causes the process to run as a utility subprocess.
75 const wchar_t kUtilityProcess[] = L"utility"; 78 const wchar_t kUtilityProcess[] = L"utility";
76 79
77 // Causes the process to run as a profile import subprocess. 80 // Causes the process to run as a profile import subprocess.
78 const wchar_t kProfileImportProcess[] = L"profile-import"; 81 const wchar_t kProfileImportProcess[] = L"profile-import";
79 82
80 // Runs the renderer and plugins in the same process as the browser 83 // Runs the renderer and plugins in the same process as the browser
81 const wchar_t kSingleProcess[] = L"single-process"; 84 const wchar_t kSingleProcess[] = L"single-process";
82 85
83 // Runs each set of script-connected tabs (i.e., a BrowsingInstance) in its own 86 // Runs each set of script-connected tabs (i.e., a BrowsingInstance) in its own
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 // Prevent images from loading. 363 // Prevent images from loading.
361 const wchar_t kDisableImages[] = L"disable-images"; 364 const wchar_t kDisableImages[] = L"disable-images";
362 365
363 // Enable remote web font support. SVG font should always work whether 366 // Enable remote web font support. SVG font should always work whether
364 // this option is specified or not. 367 // this option is specified or not.
365 const wchar_t kEnableRemoteFonts[] = L"enable-remote-fonts"; 368 const wchar_t kEnableRemoteFonts[] = L"enable-remote-fonts";
366 369
367 // Use the low fragmentation heap for the CRT. 370 // Use the low fragmentation heap for the CRT.
368 const wchar_t kUseLowFragHeapCrt[] = L"use-lf-heap"; 371 const wchar_t kUseLowFragHeapCrt[] = L"use-lf-heap";
369 372
373 // Runs the Native Client inside the renderer process.
374 const wchar_t kInternalNaCl[] = L"internal-nacl";
375
370 #ifndef NDEBUG 376 #ifndef NDEBUG
371 // Debug only switch to specify which gears plugin dll to load. 377 // Debug only switch to specify which gears plugin dll to load.
372 const wchar_t kGearsPluginPathOverride[] = L"gears-plugin-path"; 378 const wchar_t kGearsPluginPathOverride[] = L"gears-plugin-path";
373 #endif 379 #endif
374 380
375 // Enable the fastback page cache. 381 // Enable the fastback page cache.
376 const wchar_t kEnableFastback[] = L"enable-fastback"; 382 const wchar_t kEnableFastback[] = L"enable-fastback";
377 383
378 // Enable syncing bookmarks to a Google Account. 384 // Enable syncing bookmarks to a Google Account.
379 const wchar_t kEnableSync[] = L"enable-sync"; 385 const wchar_t kEnableSync[] = L"enable-sync";
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
603 609
604 // Explicitly allow additional ports using a comma separated list of port 610 // Explicitly allow additional ports using a comma separated list of port
605 // numbers. 611 // numbers.
606 const wchar_t kExplicitlyAllowedPorts[] = L"explicitly-allowed-ports"; 612 const wchar_t kExplicitlyAllowedPorts[] = L"explicitly-allowed-ports";
607 613
608 // Activate (make foreground) myself on launch. Helpful when Chrome 614 // Activate (make foreground) myself on launch. Helpful when Chrome
609 // is launched on the command line (e.g. by Selenium). Only needed on Mac. 615 // is launched on the command line (e.g. by Selenium). Only needed on Mac.
610 const wchar_t kActivateOnLaunch[] = L"activate-on-launch"; 616 const wchar_t kActivateOnLaunch[] = L"activate-on-launch";
611 617
612 } // namespace switches 618 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/nacl_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698