| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 const wchar_t kUseLowFragHeapCrt[] = L"use-lf-heap"; | 365 const wchar_t kUseLowFragHeapCrt[] = L"use-lf-heap"; |
| 366 | 366 |
| 367 #ifndef NDEBUG | 367 #ifndef NDEBUG |
| 368 // Debug only switch to specify which gears plugin dll to load. | 368 // Debug only switch to specify which gears plugin dll to load. |
| 369 const wchar_t kGearsPluginPathOverride[] = L"gears-plugin-path"; | 369 const wchar_t kGearsPluginPathOverride[] = L"gears-plugin-path"; |
| 370 #endif | 370 #endif |
| 371 | 371 |
| 372 // Enable the fastback page cache. | 372 // Enable the fastback page cache. |
| 373 const wchar_t kEnableFastback[] = L"enable-fastback"; | 373 const wchar_t kEnableFastback[] = L"enable-fastback"; |
| 374 | 374 |
| 375 const wchar_t kDisableP13n[] = L"disable-p13n"; | 375 // Enable syncing bookmarks to a Google Account. |
| 376 const wchar_t kEnableSync[] = L"enable-sync"; |
| 376 | 377 |
| 377 // Enable support for SDCH filtering (dictionary based expansion of content). | 378 // Enable support for SDCH filtering (dictionary based expansion of content). |
| 378 // Optional argument is *the* only domain name that will have SDCH suppport. | 379 // Optional argument is *the* only domain name that will have SDCH suppport. |
| 379 // Default is "-enable-sdch" to advertise SDCH on all domains. | 380 // Default is "-enable-sdch" to advertise SDCH on all domains. |
| 380 // Sample usage with argument: "-enable-sdch=.google.com" | 381 // Sample usage with argument: "-enable-sdch=.google.com" |
| 381 // SDCH is currently only supported server-side for searches on google.com. | 382 // SDCH is currently only supported server-side for searches on google.com. |
| 382 const wchar_t kSdchFilter[] = L"enable-sdch"; | 383 const wchar_t kSdchFilter[] = L"enable-sdch"; |
| 383 | 384 |
| 384 // Enable user script support. | 385 // Enable user script support. |
| 385 const wchar_t kEnableUserScripts[] = L"enable-user-scripts"; | 386 const wchar_t kEnableUserScripts[] = L"enable-user-scripts"; |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 // Disables the custom JumpList on Windows 7. | 560 // Disables the custom JumpList on Windows 7. |
| 560 const wchar_t kDisableCustomJumpList[] = L"disable-custom-jumplist"; | 561 const wchar_t kDisableCustomJumpList[] = L"disable-custom-jumplist"; |
| 561 | 562 |
| 562 // Enables full core dump reporting for Googlers only (Linux only). | 563 // Enables full core dump reporting for Googlers only (Linux only). |
| 563 const wchar_t kGoogleInternalCrashReporting[] = | 564 const wchar_t kGoogleInternalCrashReporting[] = |
| 564 L"google-internal-crash-reporting"; | 565 L"google-internal-crash-reporting"; |
| 565 | 566 |
| 566 // Enables HTML5 DB support. | 567 // Enables HTML5 DB support. |
| 567 const wchar_t kEnableDatabases[] = L"enable-databases"; | 568 const wchar_t kEnableDatabases[] = L"enable-databases"; |
| 568 } // namespace switches | 569 } // namespace switches |
| OLD | NEW |