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

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

Issue 10973: Test the feasibility of turning Chrome into a multi-process ActiveX control Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 12 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/views/window.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) 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 338
339 // Turn on an experimental implementation of SafeBrowsing which improves 339 // Turn on an experimental implementation of SafeBrowsing which improves
340 // performance during updates by avoiding the enormous IO from SQLite 340 // performance during updates by avoiding the enormous IO from SQLite
341 // operations. 341 // operations.
342 const wchar_t kUseNewSafeBrowsing[] = L"new-safe-browsing"; 342 const wchar_t kUseNewSafeBrowsing[] = L"new-safe-browsing";
343 343
344 // Turns on the accessibility in the renderer. Off by default until 344 // Turns on the accessibility in the renderer. Off by default until
345 // http://b/issue?id=1432077 is fixed. 345 // http://b/issue?id=1432077 is fixed.
346 const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility"; 346 const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility";
347 347
348 // Uses the embedded window mode which shows no toolbars or location bars.
349 const wchar_t kEmbeddedProcess[] = L"embedded";
350
351 // Specify the settings for the embedded window. This is a comma-delimited
352 // list (no spaces) of the following values:
353 // ParentWindowHandle,EmbedWindowXPos,EmbedWindowYPos,EmbedWindowWidth,EmbedWind owHeight,URL
354 const wchar_t kEmbeddedSettings[] = L"embedded-settings";
355
356
348 } // namespace switches 357 } // namespace switches
349 358
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/views/window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698