| 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 | 352 |
| 353 // Don't enforce the same-origin policy. (Used by people testing their sites.) | 353 // Don't enforce the same-origin policy. (Used by people testing their sites.) |
| 354 const wchar_t kDisableWebSecurity[] = L"disable-web-security"; | 354 const wchar_t kDisableWebSecurity[] = L"disable-web-security"; |
| 355 | 355 |
| 356 // Prevent Java from running. | 356 // Prevent Java from running. |
| 357 const wchar_t kDisableJava[] = L"disable-java"; | 357 const wchar_t kDisableJava[] = L"disable-java"; |
| 358 | 358 |
| 359 // Prevent plugins from running. | 359 // Prevent plugins from running. |
| 360 const wchar_t kDisablePlugins[] = L"disable-plugins"; | 360 const wchar_t kDisablePlugins[] = L"disable-plugins"; |
| 361 | 361 |
| 362 // Force plugins to run (for ports in progress where they are turned off by |
| 363 // default). |
| 364 const wchar_t kEnablePlugins[] = L"enable-plugins"; |
| 365 |
| 362 // Prevent images from loading. | 366 // Prevent images from loading. |
| 363 const wchar_t kDisableImages[] = L"disable-images"; | 367 const wchar_t kDisableImages[] = L"disable-images"; |
| 364 | 368 |
| 365 // Enable remote web font support. SVG font should always work whether | 369 // Enable remote web font support. SVG font should always work whether |
| 366 // this option is specified or not. | 370 // this option is specified or not. |
| 367 const wchar_t kEnableRemoteFonts[] = L"enable-remote-fonts"; | 371 const wchar_t kEnableRemoteFonts[] = L"enable-remote-fonts"; |
| 368 | 372 |
| 369 // Use the low fragmentation heap for the CRT. | 373 // Use the low fragmentation heap for the CRT. |
| 370 const wchar_t kUseLowFragHeapCrt[] = L"use-lf-heap"; | 374 const wchar_t kUseLowFragHeapCrt[] = L"use-lf-heap"; |
| 371 | 375 |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 | 544 |
| 541 // A flag, generated internally by Chrome for renderer command lines (Linux | 545 // A flag, generated internally by Chrome for renderer command lines (Linux |
| 542 // only). It tells the renderer to enable crash dumping since it cannot access | 546 // only). It tells the renderer to enable crash dumping since it cannot access |
| 543 // the user's home directory to find out for itself. | 547 // the user's home directory to find out for itself. |
| 544 const wchar_t kRendererCrashDump[] = L"renderer-crash-dumping"; | 548 const wchar_t kRendererCrashDump[] = L"renderer-crash-dumping"; |
| 545 | 549 |
| 546 // Enables the new Tabstrip on Windows. | 550 // Enables the new Tabstrip on Windows. |
| 547 const wchar_t kEnableTabtastic2[] = L"enable-tabtastic2"; | 551 const wchar_t kEnableTabtastic2[] = L"enable-tabtastic2"; |
| 548 | 552 |
| 549 } // namespace switches | 553 } // namespace switches |
| OLD | NEW |