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

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

Issue 2528433004: [RemotePlayback] Don't expose Remote Playback API for WebView. (Closed)
Patch Set: Created 4 years 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
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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "content/public/common/content_switches.h" 6 #include "content/public/common/content_switches.h"
7 7
8 namespace switches { 8 namespace switches {
9 9
10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 // Disables RGBA_4444 textures. 253 // Disables RGBA_4444 textures.
254 const char kDisableRGBA4444Textures[] = "disable-rgba-4444-textures"; 254 const char kDisableRGBA4444Textures[] = "disable-rgba-4444-textures";
255 255
256 // Taints all <canvas> elements, regardless of origin. 256 // Taints all <canvas> elements, regardless of origin.
257 const char kDisableReadingFromCanvas[] = "disable-reading-from-canvas"; 257 const char kDisableReadingFromCanvas[] = "disable-reading-from-canvas";
258 258
259 // Disables remote web font support. SVG font should always work whether this 259 // Disables remote web font support. SVG font should always work whether this
260 // option is specified or not. 260 // option is specified or not.
261 const char kDisableRemoteFonts[] = "disable-remote-fonts"; 261 const char kDisableRemoteFonts[] = "disable-remote-fonts";
262 262
263 // Disables the RemotePlayback API.
264 const char kDisableRemotePlaybackAPI[] = "disable-remote-playback-api";
timvolodine 2016/11/24 17:06:03 nit: align "=" with above constants?
whywhat 2016/11/28 23:50:46 Done.
265
263 // Turns off the accessibility in the renderer. 266 // Turns off the accessibility in the renderer.
264 const char kDisableRendererAccessibility[] = "disable-renderer-accessibility"; 267 const char kDisableRendererAccessibility[] = "disable-renderer-accessibility";
265 268
266 // Prevent renderer process backgrounding when set. 269 // Prevent renderer process backgrounding when set.
267 const char kDisableRendererBackgrounding[] = "disable-renderer-backgrounding"; 270 const char kDisableRendererBackgrounding[] = "disable-renderer-backgrounding";
268 271
269 // Whether the resize lock is disabled. Default is false. This is generally only 272 // Whether the resize lock is disabled. Default is false. This is generally only
270 // useful for tests that want to force disabling. 273 // useful for tests that want to force disabling.
271 const char kDisableResizeLock[] = "disable-resize-lock"; 274 const char kDisableResizeLock[] = "disable-resize-lock";
272 275
(...skipping 794 matching lines...) Expand 10 before | Expand all | Expand 10 after
1067 // the given directory. Used primarily to gather samples for IPC fuzzing. 1070 // the given directory. Used primarily to gather samples for IPC fuzzing.
1068 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1071 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1069 1072
1070 // Specifies the testcase used by the IPC fuzzer. 1073 // Specifies the testcase used by the IPC fuzzer.
1071 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1074 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1072 #endif 1075 #endif
1073 1076
1074 // Don't dump stuff here, follow the same order as the header. 1077 // Don't dump stuff here, follow the same order as the header.
1075 1078
1076 } // namespace switches 1079 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698