| OLD | NEW |
| 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 Loading... |
| 329 // Sample usage with argument: "-enable-sdch=.google.com" | 329 // Sample usage with argument: "-enable-sdch=.google.com" |
| 330 // SDCH is currently only supported server-side for searches on google.com. | 330 // SDCH is currently only supported server-side for searches on google.com. |
| 331 const wchar_t kSdchFilter[] = L"enable-sdch"; | 331 const wchar_t kSdchFilter[] = L"enable-sdch"; |
| 332 | 332 |
| 333 // Enable Greasemonkey script support. | 333 // Enable Greasemonkey script support. |
| 334 const wchar_t kEnableGreasemonkey[] = L"enable-greasemonkey"; | 334 const wchar_t kEnableGreasemonkey[] = L"enable-greasemonkey"; |
| 335 | 335 |
| 336 // Causes the browser to launch directly in incognito mode. | 336 // Causes the browser to launch directly in incognito mode. |
| 337 const wchar_t kIncognito[] = L"incognito"; | 337 const wchar_t kIncognito[] = L"incognito"; |
| 338 | 338 |
| 339 // Turn on an experimental implementation of SafeBrowsing which improves | 339 // Turn on the old implementation of SafeBrowsing which may have performance |
| 340 // performance during updates by avoiding the enormous IO from SQLite | 340 // problems on some computers during updates. |
| 341 // operations. | 341 const wchar_t kUseOldSafeBrowsing[] = L"old-safe-browsing"; |
| 342 const wchar_t kUseNewSafeBrowsing[] = L"new-safe-browsing"; | |
| 343 | 342 |
| 344 // Turns on the accessibility in the renderer. Off by default until | 343 // Turns on the accessibility in the renderer. Off by default until |
| 345 // http://b/issue?id=1432077 is fixed. | 344 // http://b/issue?id=1432077 is fixed. |
| 346 const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility"; | 345 const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility"; |
| 347 | 346 |
| 348 } // namespace switches | 347 } // namespace switches |
| 349 | 348 |
| OLD | NEW |