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

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

Issue 7708021: content: Move render_widget_host_view_gtk to content/ try 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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/test/data/gtk_key_bindings_test_gtkrc » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1121 1121
1122 #ifndef NDEBUG 1122 #ifndef NDEBUG
1123 // Skips all other OOBE pages after user login. 1123 // Skips all other OOBE pages after user login.
1124 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; 1124 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin";
1125 1125
1126 // Enables overriding the path off file manager extension. 1126 // Enables overriding the path off file manager extension.
1127 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; 1127 const char kFileManagerExtensionPath[] = "filemgr-ext-path";
1128 #endif 1128 #endif
1129 #endif 1129 #endif
1130 1130
1131 #if defined(OS_POSIX) && !defined(OS_MACOSX)
1132 // Specify the amount the trackpad should scroll by.
1133 const char kScrollPixels[] = "scroll-pixels";
1134 #endif
1135
1136 #if defined(OS_MACOSX) || defined(OS_WIN) 1131 #if defined(OS_MACOSX) || defined(OS_WIN)
1137 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) 1132 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows)
1138 // instead of NSS for SSL. 1133 // instead of NSS for SSL.
1139 const char kUseSystemSSL[] = "use-system-ssl"; 1134 const char kUseSystemSSL[] = "use-system-ssl";
1140 #endif 1135 #endif
1141 1136
1142 #if defined(OS_POSIX) 1137 #if defined(OS_POSIX)
1143 // A flag, generated internally by Chrome for renderer and other helper process 1138 // A flag, generated internally by Chrome for renderer and other helper process
1144 // command lines on Linux and Mac. It tells the helper process to enable crash 1139 // command lines on Linux and Mac. It tells the helper process to enable crash
1145 // dumping and reporting, because helpers cannot access the profile or other 1140 // dumping and reporting, because helpers cannot access the profile or other
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
1248 1243
1249 // ----------------------------------------------------------------------------- 1244 // -----------------------------------------------------------------------------
1250 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1245 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1251 // 1246 //
1252 // You were going to just dump your switches here, weren't you? Instead, 1247 // You were going to just dump your switches here, weren't you? Instead,
1253 // please put them in alphabetical order above, or in order inside the 1248 // please put them in alphabetical order above, or in order inside the
1254 // appropriate ifdef at the bottom. The order should match the header. 1249 // appropriate ifdef at the bottom. The order should match the header.
1255 // ----------------------------------------------------------------------------- 1250 // -----------------------------------------------------------------------------
1256 1251
1257 } // namespace switches 1252 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/test/data/gtk_key_bindings_test_gtkrc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698