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

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

Issue 9936002: Added code so renderer would cleanly exit. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: git try Created 8 years, 8 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/renderer/chrome_render_process_observer.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/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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 // Enables panels (always on-top docked pop-up windows). 556 // Enables panels (always on-top docked pop-up windows).
557 const char kEnablePanels[] = "enable-panels"; 557 const char kEnablePanels[] = "enable-panels";
558 558
559 // Enables password generation when we detect that the user is going through 559 // Enables password generation when we detect that the user is going through
560 // account creation. 560 // account creation.
561 const char kEnablePasswordGeneration[] = "enable-password-generation"; 561 const char kEnablePasswordGeneration[] = "enable-password-generation";
562 562
563 // Enables advanced app capabilities. 563 // Enables advanced app capabilities.
564 const char kEnablePlatformApps[] = "enable-platform-apps"; 564 const char kEnablePlatformApps[] = "enable-platform-apps";
565 565
566 // Enables clean exit of the renderer process via calling exit();
Nirnimesh 2012/04/06 01:06:41 nit: end with period, not ;
567 const char kEnableRendererCleanExit[] = "renderer-clean-exit";
568
566 // Enables content settings based on host *and* plug-in in the user 569 // Enables content settings based on host *and* plug-in in the user
567 // preferences. 570 // preferences.
568 const char kEnableResourceContentSettings[] = 571 const char kEnableResourceContentSettings[] =
569 "enable-resource-content-settings"; 572 "enable-resource-content-settings";
570 573
571 // Enables the installation and usage of Portable Native Client. 574 // Enables the installation and usage of Portable Native Client.
572 const char kEnablePnacl[] = "enable-pnacl"; 575 const char kEnablePnacl[] = "enable-pnacl";
573 576
574 // Enables tracking of tasks in profiler for viewing via about:profiler. 577 // Enables tracking of tasks in profiler for viewing via about:profiler.
575 // To predominantly disable tracking (profiling), use the command line switch: 578 // To predominantly disable tracking (profiling), use the command line switch:
(...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after
1373 1376
1374 // ----------------------------------------------------------------------------- 1377 // -----------------------------------------------------------------------------
1375 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1378 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1376 // 1379 //
1377 // You were going to just dump your switches here, weren't you? Instead, please 1380 // You were going to just dump your switches here, weren't you? Instead, please
1378 // put them in alphabetical order above, or in order inside the appropriate 1381 // put them in alphabetical order above, or in order inside the appropriate
1379 // ifdef at the bottom. The order should match the header. 1382 // ifdef at the bottom. The order should match the header.
1380 // ----------------------------------------------------------------------------- 1383 // -----------------------------------------------------------------------------
1381 1384
1382 } // namespace switches 1385 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/renderer/chrome_render_process_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698