| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 | 384 |
| 385 // Disable syncing bookmarks to a Google Account. | 385 // Disable syncing bookmarks to a Google Account. |
| 386 const wchar_t kDisableSync[] = L"disable-sync"; | 386 const wchar_t kDisableSync[] = L"disable-sync"; |
| 387 | 387 |
| 388 // Use the SyncerThread implementation that matches up with the old pthread | 388 // Use the SyncerThread implementation that matches up with the old pthread |
| 389 // impl semantics, but using Chrome synchronization primitives. The only | 389 // impl semantics, but using Chrome synchronization primitives. The only |
| 390 // difference between this and the default is that we now have no timeout on | 390 // difference between this and the default is that we now have no timeout on |
| 391 // Stop(). Should only use if you experience problems with the default. | 391 // Stop(). Should only use if you experience problems with the default. |
| 392 const wchar_t kSyncerThreadTimedStop[] = L"syncer-thread-timed-stop"; | 392 const wchar_t kSyncerThreadTimedStop[] = L"syncer-thread-timed-stop"; |
| 393 | 393 |
| 394 // Use the old pthreads SyncerThread implementation. | |
| 395 // Should only use if you experience problems with the default. | |
| 396 const wchar_t kSyncerThreadPthreads[] = L"syncer-thread-pthreads"; | |
| 397 | |
| 398 // Enable support for SDCH filtering (dictionary based expansion of content). | 394 // Enable support for SDCH filtering (dictionary based expansion of content). |
| 399 // Optional argument is *the* only domain name that will have SDCH suppport. | 395 // Optional argument is *the* only domain name that will have SDCH suppport. |
| 400 // Default is "-enable-sdch" to advertise SDCH on all domains. | 396 // Default is "-enable-sdch" to advertise SDCH on all domains. |
| 401 // Sample usage with argument: "-enable-sdch=.google.com" | 397 // Sample usage with argument: "-enable-sdch=.google.com" |
| 402 // SDCH is currently only supported server-side for searches on google.com. | 398 // SDCH is currently only supported server-side for searches on google.com. |
| 403 const wchar_t kSdchFilter[] = L"enable-sdch"; | 399 const wchar_t kSdchFilter[] = L"enable-sdch"; |
| 404 | 400 |
| 405 // Enable user script support. | 401 // Enable user script support. |
| 406 const wchar_t kEnableUserScripts[] = L"enable-user-scripts"; | 402 const wchar_t kEnableUserScripts[] = L"enable-user-scripts"; |
| 407 | 403 |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 const wchar_t kEnableExperimentalWebGL[] = L"enable-webgl"; | 624 const wchar_t kEnableExperimentalWebGL[] = L"enable-webgl"; |
| 629 | 625 |
| 630 // Enabled desktop notifications. | 626 // Enabled desktop notifications. |
| 631 const wchar_t kEnableDesktopNotifications[] = | 627 const wchar_t kEnableDesktopNotifications[] = |
| 632 L"enable-desktop-notifications"; | 628 L"enable-desktop-notifications"; |
| 633 | 629 |
| 634 // Enable Web Sockets support. | 630 // Enable Web Sockets support. |
| 635 const wchar_t kEnableWebSockets[] = L"enable-web-sockets"; | 631 const wchar_t kEnableWebSockets[] = L"enable-web-sockets"; |
| 636 | 632 |
| 637 } // namespace switches | 633 } // namespace switches |
| OLD | NEW |