| 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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 | 322 |
| 323 // Prevent Java from running. | 323 // Prevent Java from running. |
| 324 const wchar_t kDisableJava[] = L"disable-java"; | 324 const wchar_t kDisableJava[] = L"disable-java"; |
| 325 | 325 |
| 326 // Prevent plugins from running. | 326 // Prevent plugins from running. |
| 327 const wchar_t kDisablePlugins[] = L"disable-plugins"; | 327 const wchar_t kDisablePlugins[] = L"disable-plugins"; |
| 328 | 328 |
| 329 // Prevent images from loading. | 329 // Prevent images from loading. |
| 330 const wchar_t kDisableImages[] = L"disable-images"; | 330 const wchar_t kDisableImages[] = L"disable-images"; |
| 331 | 331 |
| 332 // Enable remote web font support. |
| 333 const wchar_t kEnableRemoteFont[] = L"enable-remote-font"; |
| 334 |
| 332 // Use the low fragmentation heap for the CRT. | 335 // Use the low fragmentation heap for the CRT. |
| 333 const wchar_t kUseLowFragHeapCrt[] = L"use-lf-heap"; | 336 const wchar_t kUseLowFragHeapCrt[] = L"use-lf-heap"; |
| 334 | 337 |
| 335 #ifndef NDEBUG | 338 #ifndef NDEBUG |
| 336 // Debug only switch to specify which gears plugin dll to load. | 339 // Debug only switch to specify which gears plugin dll to load. |
| 337 const wchar_t kGearsPluginPathOverride[] = L"gears-plugin-path"; | 340 const wchar_t kGearsPluginPathOverride[] = L"gears-plugin-path"; |
| 338 #endif | 341 #endif |
| 339 | 342 |
| 340 // Enable the fastback page cache. | 343 // Enable the fastback page cache. |
| 341 const wchar_t kEnableFastback[] = L"enable-fastback"; | 344 const wchar_t kEnableFastback[] = L"enable-fastback"; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 // Enables experimental views under gtk. | 408 // Enables experimental views under gtk. |
| 406 const wchar_t kViewsGtk[] = L"views-gtk"; | 409 const wchar_t kViewsGtk[] = L"views-gtk"; |
| 407 | 410 |
| 408 // Enables the bookmark menu. | 411 // Enables the bookmark menu. |
| 409 const wchar_t kBookmarkMenu[] = L"bookmark-menu"; | 412 const wchar_t kBookmarkMenu[] = L"bookmark-menu"; |
| 410 | 413 |
| 411 // Enables StatsTable, logging statistics to a global named shared memory table. | 414 // Enables StatsTable, logging statistics to a global named shared memory table. |
| 412 const wchar_t kEnableStatsTable[] = L"enable-stats-table"; | 415 const wchar_t kEnableStatsTable[] = L"enable-stats-table"; |
| 413 | 416 |
| 414 } // namespace switches | 417 } // namespace switches |
| OLD | NEW |