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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 | 340 |
341 // Prevent Java from running. | 341 // Prevent Java from running. |
342 const wchar_t kDisableJava[] = L"disable-java"; | 342 const wchar_t kDisableJava[] = L"disable-java"; |
343 | 343 |
344 // Prevent plugins from running. | 344 // Prevent plugins from running. |
345 const wchar_t kDisablePlugins[] = L"disable-plugins"; | 345 const wchar_t kDisablePlugins[] = L"disable-plugins"; |
346 | 346 |
347 // Prevent images from loading. | 347 // Prevent images from loading. |
348 const wchar_t kDisableImages[] = L"disable-images"; | 348 const wchar_t kDisableImages[] = L"disable-images"; |
349 | 349 |
| 350 // Enable remote web font support |
| 351 const wchar_t kEnableRemoteFonts[] = L"enable-remote-fonts"; |
| 352 |
350 // Use the low fragmentation heap for the CRT. | 353 // Use the low fragmentation heap for the CRT. |
351 const wchar_t kUseLowFragHeapCrt[] = L"use-lf-heap"; | 354 const wchar_t kUseLowFragHeapCrt[] = L"use-lf-heap"; |
352 | 355 |
353 #ifndef NDEBUG | 356 #ifndef NDEBUG |
354 // Debug only switch to specify which gears plugin dll to load. | 357 // Debug only switch to specify which gears plugin dll to load. |
355 const wchar_t kGearsPluginPathOverride[] = L"gears-plugin-path"; | 358 const wchar_t kGearsPluginPathOverride[] = L"gears-plugin-path"; |
356 #endif | 359 #endif |
357 | 360 |
358 // Enable the fastback page cache. | 361 // Enable the fastback page cache. |
359 const wchar_t kEnableFastback[] = L"enable-fastback"; | 362 const wchar_t kEnableFastback[] = L"enable-fastback"; |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 const wchar_t kDisableAudio[] = L"disable-audio"; | 447 const wchar_t kDisableAudio[] = L"disable-audio"; |
445 | 448 |
446 // Replaces the buffered data source for <audio> and <video> with a simplified | 449 // Replaces the buffered data source for <audio> and <video> with a simplified |
447 // resource loader that downloads the entire resource into memory. | 450 // resource loader that downloads the entire resource into memory. |
448 // | 451 // |
449 // TODO(scherkus): remove --simple-data-source when our media resource loading | 452 // TODO(scherkus): remove --simple-data-source when our media resource loading |
450 // is cleaned up and playback testing completed. | 453 // is cleaned up and playback testing completed. |
451 const wchar_t kSimpleDataSource[] = L"simple-data-source"; | 454 const wchar_t kSimpleDataSource[] = L"simple-data-source"; |
452 | 455 |
453 } // namespace switches | 456 } // namespace switches |
OLD | NEW |