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

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

Issue 345021: Continue to remove CHROME_FRAME_BUILD define from code that goes into chrome.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 25 matching lines...) Expand all
36 36
37 // Causes the browser process to throw an assertion on startup. 37 // Causes the browser process to throw an assertion on startup.
38 const char kBrowserAssertTest[] = "assert-test"; 38 const char kBrowserAssertTest[] = "assert-test";
39 39
40 // Causes the browser process to crash on startup. 40 // Causes the browser process to crash on startup.
41 const char kBrowserCrashTest[] = "crash-test"; 41 const char kBrowserCrashTest[] = "crash-test";
42 42
43 // Path to the exe to run for the renderer and plugin subprocesses. 43 // Path to the exe to run for the renderer and plugin subprocesses.
44 const char kBrowserSubprocessPath[] = "browser-subprocess-path"; 44 const char kBrowserSubprocessPath[] = "browser-subprocess-path";
45 45
46 // Run Chrome in Chrome Frame mode. This means that Chrome expects to be run
47 // as a dependent process of the Chrome Frame plugin.
48 const char kChromeFrame[] = "chrome-frame";
49
46 // The Country we should use. This is normally obtained from the operating 50 // The Country we should use. This is normally obtained from the operating
47 // system during first run and cached in the preferences afterwards. This is a 51 // system during first run and cached in the preferences afterwards. This is a
48 // string value, the 2 letter code from ISO 3166-1. 52 // string value, the 2 letter code from ISO 3166-1.
49 const char kCountry[] = "country"; 53 const char kCountry[] = "country";
50 54
51 // Enables support to debug printing subsystem. 55 // Enables support to debug printing subsystem.
52 const char kDebugPrint[] = "debug-print"; 56 const char kDebugPrint[] = "debug-print";
53 57
54 // Triggers a pletora of diagnostic modes. 58 // Triggers a pletora of diagnostic modes.
55 const char kDiagnostics[] = "diagnostics"; 59 const char kDiagnostics[] = "diagnostics";
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 // 677 //
674 // You were going to just dump your switches here, weren't you? Instead, 678 // You were going to just dump your switches here, weren't you? Instead,
675 // please put them in alphabetical order above, or in order inside the 679 // please put them in alphabetical order above, or in order inside the
676 // appropriate ifdef at the bottom. The order should match the header. 680 // appropriate ifdef at the bottom. The order should match the header.
677 // ----------------------------------------------------------------------------- 681 // -----------------------------------------------------------------------------
678 682
679 // Enable AutoFill++. 683 // Enable AutoFill++.
680 const char kEnableNewAutoFill[] = "enable-new-autofill"; 684 const char kEnableNewAutoFill[] = "enable-new-autofill";
681 685
682 } // namespace switches 686 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698