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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 const wchar_t kDisableImages[] = L"disable-images"; | 330 const wchar_t kDisableImages[] = L"disable-images"; |
331 | 331 |
332 // Use the low fragmentation heap for the CRT. | 332 // Use the low fragmentation heap for the CRT. |
333 const wchar_t kUseLowFragHeapCrt[] = L"use-lf-heap"; | 333 const wchar_t kUseLowFragHeapCrt[] = L"use-lf-heap"; |
334 | 334 |
335 #ifndef NDEBUG | 335 #ifndef NDEBUG |
336 // Debug only switch to specify which gears plugin dll to load. | 336 // Debug only switch to specify which gears plugin dll to load. |
337 const wchar_t kGearsPluginPathOverride[] = L"gears-plugin-path"; | 337 const wchar_t kGearsPluginPathOverride[] = L"gears-plugin-path"; |
338 #endif | 338 #endif |
339 | 339 |
340 // Switch to load Gears in the renderer process. | |
341 const wchar_t kGearsInRenderer[] = L"gears-in-renderer"; | |
342 | |
343 // Enable the fastback page cache. | 340 // Enable the fastback page cache. |
344 const wchar_t kEnableFastback[] = L"enable-fastback"; | 341 const wchar_t kEnableFastback[] = L"enable-fastback"; |
345 | 342 |
346 // Allow loading of the javascript debugger UI from the filesystem. | 343 // Allow loading of the javascript debugger UI from the filesystem. |
347 const wchar_t kJavaScriptDebuggerPath[] = L"javascript-debugger-path"; | 344 const wchar_t kJavaScriptDebuggerPath[] = L"javascript-debugger-path"; |
348 | 345 |
349 const wchar_t kDisableP13n[] = L"disable-p13n"; | 346 const wchar_t kDisableP13n[] = L"disable-p13n"; |
350 | 347 |
351 // Enable support for SDCH filtering (dictionary based expansion of content). | 348 // Enable support for SDCH filtering (dictionary based expansion of content). |
352 // Optional argument is *the* only domain name that will have SDCH suppport. | 349 // Optional argument is *the* only domain name that will have SDCH suppport. |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 | 394 |
398 // On POSIX only: use FIFO for IPC channels so that "unrelated" process | 395 // On POSIX only: use FIFO for IPC channels so that "unrelated" process |
399 // can connect to a channel, provided it knows its name. For debugging purposes. | 396 // can connect to a channel, provided it knows its name. For debugging purposes. |
400 const wchar_t kIPCUseFIFO[] = L"ipc-use-fifo"; | 397 const wchar_t kIPCUseFIFO[] = L"ipc-use-fifo"; |
401 | 398 |
402 // If this flag is set open out of process developer tools window instead of | 399 // If this flag is set open out of process developer tools window instead of |
403 // Console Debugger when user clicks "Debug JavaScript". | 400 // Console Debugger when user clicks "Debug JavaScript". |
404 const wchar_t kEnableOutOfProcessDevTools[] = L"enable-oop-devtools"; | 401 const wchar_t kEnableOutOfProcessDevTools[] = L"enable-oop-devtools"; |
405 | 402 |
406 } // namespace switches | 403 } // namespace switches |
OLD | NEW |