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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 // Debug only switch to specify which gears plugin dll to load. | 371 // Debug only switch to specify which gears plugin dll to load. |
372 const wchar_t kGearsPluginPathOverride[] = L"gears-plugin-path"; | 372 const wchar_t kGearsPluginPathOverride[] = L"gears-plugin-path"; |
373 #endif | 373 #endif |
374 | 374 |
375 // Enable the fastback page cache. | 375 // Enable the fastback page cache. |
376 const wchar_t kEnableFastback[] = L"enable-fastback"; | 376 const wchar_t kEnableFastback[] = L"enable-fastback"; |
377 | 377 |
378 // Enable syncing bookmarks to a Google Account. | 378 // Enable syncing bookmarks to a Google Account. |
379 const wchar_t kEnableSync[] = L"enable-sync"; | 379 const wchar_t kEnableSync[] = L"enable-sync"; |
380 | 380 |
381 // Use the SyncerThread implementation that matches up with the old pthread | |
382 // impl semantics, but using Chrome synchronization primitives. The only | |
383 // difference between this and the default is that we now have no timeout on | |
384 // Stop(). Should only use if you experience problems with the default. | |
385 const wchar_t kSyncerThreadTimedStop[] = L"syncer-thread-timed-stop"; | |
386 | |
387 // Use the old pthreads SyncerThread implementation. | |
388 // Should only use if you experience problems with the default. | |
389 const wchar_t kSyncerThreadPthreads[] = L"syncer-thread-pthreads"; | |
390 | |
391 // Enable support for SDCH filtering (dictionary based expansion of content). | 381 // Enable support for SDCH filtering (dictionary based expansion of content). |
392 // Optional argument is *the* only domain name that will have SDCH suppport. | 382 // Optional argument is *the* only domain name that will have SDCH suppport. |
393 // Default is "-enable-sdch" to advertise SDCH on all domains. | 383 // Default is "-enable-sdch" to advertise SDCH on all domains. |
394 // Sample usage with argument: "-enable-sdch=.google.com" | 384 // Sample usage with argument: "-enable-sdch=.google.com" |
395 // SDCH is currently only supported server-side for searches on google.com. | 385 // SDCH is currently only supported server-side for searches on google.com. |
396 const wchar_t kSdchFilter[] = L"enable-sdch"; | 386 const wchar_t kSdchFilter[] = L"enable-sdch"; |
397 | 387 |
398 // Enable user script support. | 388 // Enable user script support. |
399 const wchar_t kEnableUserScripts[] = L"enable-user-scripts"; | 389 const wchar_t kEnableUserScripts[] = L"enable-user-scripts"; |
400 | 390 |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
607 | 597 |
608 // Explicitly allow additional ports using a comma separated list of port | 598 // Explicitly allow additional ports using a comma separated list of port |
609 // numbers. | 599 // numbers. |
610 const wchar_t kExplicitlyAllowedPorts[] = L"explicitly-allowed-ports"; | 600 const wchar_t kExplicitlyAllowedPorts[] = L"explicitly-allowed-ports"; |
611 | 601 |
612 // Activate (make foreground) myself on launch. Helpful when Chrome | 602 // Activate (make foreground) myself on launch. Helpful when Chrome |
613 // is launched on the command line (e.g. by Selenium). Only needed on Mac. | 603 // is launched on the command line (e.g. by Selenium). Only needed on Mac. |
614 const wchar_t kActivateOnLaunch[] = L"activate-on-launch"; | 604 const wchar_t kActivateOnLaunch[] = L"activate-on-launch"; |
615 | 605 |
616 } // namespace switches | 606 } // namespace switches |
OLD | NEW |