| 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 const wchar_t kWebWorkerShareProcesses[] = L"web-worker-share-processes"; | 442 const wchar_t kWebWorkerShareProcesses[] = L"web-worker-share-processes"; |
| 443 | 443 |
| 444 // Enables the bookmark menu. | 444 // Enables the bookmark menu. |
| 445 const wchar_t kBookmarkMenu[] = L"bookmark-menu"; | 445 const wchar_t kBookmarkMenu[] = L"bookmark-menu"; |
| 446 | 446 |
| 447 // Enables auto spell correction. | 447 // Enables auto spell correction. |
| 448 const wchar_t kAutoSpellCorrect[] = L"auto-spell-correct"; | 448 const wchar_t kAutoSpellCorrect[] = L"auto-spell-correct"; |
| 449 | 449 |
| 450 // Enables StatsTable, logging statistics to a global named shared memory table. | 450 // Enables StatsTable, logging statistics to a global named shared memory table. |
| 451 const wchar_t kEnableStatsTable[] = L"enable-stats-table"; | 451 const wchar_t kEnableStatsTable[] = L"enable-stats-table"; |
| 452 // Disables the Omnibox2 popup and functionality. | |
| 453 const wchar_t kDisableOmnibox2[] = L"disable-omnibox2"; | |
| 454 | 452 |
| 455 // Replaces the audio IPC layer for <audio> and <video> with a mock audio | 453 // Replaces the audio IPC layer for <audio> and <video> with a mock audio |
| 456 // device, useful when using remote desktop or machines without sound cards. | 454 // device, useful when using remote desktop or machines without sound cards. |
| 457 // This is temporary until we fix the underlying problem. | 455 // This is temporary until we fix the underlying problem. |
| 458 // | 456 // |
| 459 // TODO(scherkus): remove --disable-audio when we have a proper fallback | 457 // TODO(scherkus): remove --disable-audio when we have a proper fallback |
| 460 // mechanism. | 458 // mechanism. |
| 461 const wchar_t kDisableAudio[] = L"disable-audio"; | 459 const wchar_t kDisableAudio[] = L"disable-audio"; |
| 462 | 460 |
| 463 // Replaces the buffered data source for <audio> and <video> with a simplified | 461 // Replaces the buffered data source for <audio> and <video> with a simplified |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 561 // Enables the custom JumpList on Windows 7. | 559 // Enables the custom JumpList on Windows 7. |
| 562 const wchar_t kEnableCustomJumpList[] = L"enable-custom-jumplist"; | 560 const wchar_t kEnableCustomJumpList[] = L"enable-custom-jumplist"; |
| 563 | 561 |
| 564 // Enables full core dump reporting for Googlers only (Linux only). | 562 // Enables full core dump reporting for Googlers only (Linux only). |
| 565 const wchar_t kGoogleInternalCrashReporting[] = | 563 const wchar_t kGoogleInternalCrashReporting[] = |
| 566 L"google-internal-crash-reporting"; | 564 L"google-internal-crash-reporting"; |
| 567 | 565 |
| 568 // Enables HTML5 DB support. | 566 // Enables HTML5 DB support. |
| 569 const wchar_t kEnableDatabases[] = L"enable-databases"; | 567 const wchar_t kEnableDatabases[] = L"enable-databases"; |
| 570 } // namespace switches | 568 } // namespace switches |
| OLD | NEW |