Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Side by Side Diff: content/public/common/content_switches.cc

Issue 424823002: Restrict NetInfo platforms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 // Enables support for inband text tracks in media content. 392 // Enables support for inband text tracks in media content.
393 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks"; 393 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks";
394 394
395 // Force logging to be enabled. Logging is disabled by default in release 395 // Force logging to be enabled. Logging is disabled by default in release
396 // builds. 396 // builds.
397 const char kEnableLogging[] = "enable-logging"; 397 const char kEnableLogging[] = "enable-logging";
398 398
399 // Enables the memory benchmarking extension 399 // Enables the memory benchmarking extension
400 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; 400 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking";
401 401
402 // Enables the network information API.
403 const char kEnableNetworkInformation[] = "enable-network-information";
404
402 // Enable rasterizer that writes directly to GPU memory. 405 // Enable rasterizer that writes directly to GPU memory.
403 const char kEnableOneCopy[] = "enable-one-copy"; 406 const char kEnableOneCopy[] = "enable-one-copy";
404 407
405 // Enables use of hardware overlay for fullscreen video playback. Android only. 408 // Enables use of hardware overlay for fullscreen video playback. Android only.
406 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video"; 409 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video";
407 410
408 // Disables blink subtitle and media control on top of overlay fullscreen video. 411 // Disables blink subtitle and media control on top of overlay fullscreen video.
409 const char kDisableOverlayFullscreenVideoSubtitle[] = 412 const char kDisableOverlayFullscreenVideoSubtitle[] =
410 "disable-overlay-fullscreen-video-subtitle"; 413 "disable-overlay-fullscreen-video-subtitle";
411 414
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
944 // Enable the Win32K process mitigation policy for renderer processes which 947 // Enable the Win32K process mitigation policy for renderer processes which
945 // prevents them from invoking user32 and gdi32 system calls which enter 948 // prevents them from invoking user32 and gdi32 system calls which enter
946 // the kernel. This is only supported on Windows 8 and beyond. 949 // the kernel. This is only supported on Windows 8 and beyond.
947 const char kEnableWin32kRendererLockDown[] 950 const char kEnableWin32kRendererLockDown[]
948 = "enable_win32k_renderer_lockdown"; 951 = "enable_win32k_renderer_lockdown";
949 #endif 952 #endif
950 953
951 // Don't dump stuff here, follow the same order as the header. 954 // Don't dump stuff here, follow the same order as the header.
952 955
953 } // namespace switches 956 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698