| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 | 320 |
| 321 const wchar_t kEnableP13n[] = L"enable-p13n"; | 321 const wchar_t kEnableP13n[] = L"enable-p13n"; |
| 322 | 322 |
| 323 // Enable support for SDCH filtering (dictionary based expansion of content). | 323 // Enable support for SDCH filtering (dictionary based expansion of content). |
| 324 // Optional argument is *the* only domain name that will have SDCH suppport. | 324 // Optional argument is *the* only domain name that will have SDCH suppport. |
| 325 // Default is "-enable-sdch" to advertise SDCH on all domains. | 325 // Default is "-enable-sdch" to advertise SDCH on all domains. |
| 326 // Sample usage with argument: "-enable-sdch=.google.com" | 326 // Sample usage with argument: "-enable-sdch=.google.com" |
| 327 // SDCH is currently only supported server-side for searches on google.com. | 327 // SDCH is currently only supported server-side for searches on google.com. |
| 328 const wchar_t kSdchFilter[] = L"enable-sdch"; | 328 const wchar_t kSdchFilter[] = L"enable-sdch"; |
| 329 | 329 |
| 330 // Causes the browser to launch directly in incognito mode. |
| 331 const wchar_t kIncognito[] = L"incognito"; |
| 332 |
| 330 } // namespace switches | 333 } // namespace switches |
| 331 | 334 |
| OLD | NEW |