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

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

Issue 12876: Introduce ExtensionsService. Load extensions on startup from a directory in... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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) 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 // Enable support for SDCH filtering (dictionary based expansion of content). 329 // Enable support for SDCH filtering (dictionary based expansion of content).
330 // Optional argument is *the* only domain name that will have SDCH suppport. 330 // Optional argument is *the* only domain name that will have SDCH suppport.
331 // Default is "-enable-sdch" to advertise SDCH on all domains. 331 // Default is "-enable-sdch" to advertise SDCH on all domains.
332 // Sample usage with argument: "-enable-sdch=.google.com" 332 // Sample usage with argument: "-enable-sdch=.google.com"
333 // SDCH is currently only supported server-side for searches on google.com. 333 // SDCH is currently only supported server-side for searches on google.com.
334 const wchar_t kSdchFilter[] = L"enable-sdch"; 334 const wchar_t kSdchFilter[] = L"enable-sdch";
335 335
336 // Enable Greasemonkey script support. 336 // Enable Greasemonkey script support.
337 const wchar_t kEnableGreasemonkey[] = L"enable-greasemonkey"; 337 const wchar_t kEnableGreasemonkey[] = L"enable-greasemonkey";
338 338
339 // Enable extensions.
340 const wchar_t kEnableExtensions[] = L"enable-extensions";
341
339 // Causes the browser to launch directly in incognito mode. 342 // Causes the browser to launch directly in incognito mode.
340 const wchar_t kIncognito[] = L"incognito"; 343 const wchar_t kIncognito[] = L"incognito";
341 344
342 // Turn on the old implementation of SafeBrowsing which may have performance 345 // Turn on the old implementation of SafeBrowsing which may have performance
343 // problems on some computers during updates. 346 // problems on some computers during updates.
344 const wchar_t kUseOldSafeBrowsing[] = L"old-safe-browsing"; 347 const wchar_t kUseOldSafeBrowsing[] = L"old-safe-browsing";
345 348
346 // Turns on the accessibility in the renderer. Off by default until 349 // Turns on the accessibility in the renderer. Off by default until
347 // http://b/issue?id=1432077 is fixed. 350 // http://b/issue?id=1432077 is fixed.
348 const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility"; 351 const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility";
349 352
350 // Enable HTML5 Video/Audio tag support 353 // Enable HTML5 Video/Audio tag support
351 const wchar_t kEnableVideo[] = L"enable-video"; 354 const wchar_t kEnableVideo[] = L"enable-video";
352 355
353 } // namespace switches 356 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698