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

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

Issue 3038: Remove the TODO to remove --start-maximized. It seems this switch is... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 3 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 | « no previous file | no next file » | 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-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 // Does chrome really need multiple memory models? No. But we get a lot 246 // Does chrome really need multiple memory models? No. But we get a lot
247 // of concerns from individuals about how the changes work on *their* 247 // of concerns from individuals about how the changes work on *their*
248 // system, and we need to be able to experiment with a few choices. 248 // system, and we need to be able to experiment with a few choices.
249 const wchar_t kMemoryModel[] = L"memory-model"; 249 const wchar_t kMemoryModel[] = L"memory-model";
250 250
251 // By default, cookies are not allowed on file://. They are needed in for 251 // By default, cookies are not allowed on file://. They are needed in for
252 // testing, for example page cycler and layout tests. See bug 1157243. 252 // testing, for example page cycler and layout tests. See bug 1157243.
253 const wchar_t kEnableFileCookies[] = L"enable-file-cookies"; 253 const wchar_t kEnableFileCookies[] = L"enable-file-cookies";
254 254
255 // Start the browser maximized, regardless of any previous settings. 255 // Start the browser maximized, regardless of any previous settings.
256 // TODO(pjohnson): Remove this once bug 1137420 is fixed. We are using this
257 // as a workaround for not being able to use moveTo and resizeTo on a
258 // top-level window.
259 const wchar_t kStartMaximized[] = L"start-maximized"; 256 const wchar_t kStartMaximized[] = L"start-maximized";
260 257
261 // Spawn threads to watch for excessive delays in specified message loops. 258 // Spawn threads to watch for excessive delays in specified message loops.
262 // User should set breakpoints on Alarm() to examine problematic thread. 259 // User should set breakpoints on Alarm() to examine problematic thread.
263 // Usage: -enable-watchdog=[ui][io] 260 // Usage: -enable-watchdog=[ui][io]
264 // Order of the listed sub-arguments does not matter. 261 // Order of the listed sub-arguments does not matter.
265 const wchar_t kEnableWatchdog[] = L"enable-watchdog"; 262 const wchar_t kEnableWatchdog[] = L"enable-watchdog";
266 263
267 // Display the First Run experience when the browser is started, regardless of 264 // Display the First Run experience when the browser is started, regardless of
268 // whether or not it's actually the first run. 265 // whether or not it's actually the first run.
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 // Enable new HTTP stack. 312 // Enable new HTTP stack.
316 const wchar_t kUseNewHttp[] = L"new-http"; 313 const wchar_t kUseNewHttp[] = L"new-http";
317 314
318 // Allow loading of the javascript debugger UI from the filesystem. 315 // Allow loading of the javascript debugger UI from the filesystem.
319 const wchar_t kJavaScriptDebuggerPath[] = L"javascript-debugger-path"; 316 const wchar_t kJavaScriptDebuggerPath[] = L"javascript-debugger-path";
320 317
321 const wchar_t kEnableP13n[] = L"enable-p13n"; 318 const wchar_t kEnableP13n[] = L"enable-p13n";
322 319
323 } // namespace switches 320 } // namespace switches
324 321
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698