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

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

Issue 2672983003: Implements PrintBrowser mode. (Closed)
Patch Set: Created 3 years, 10 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
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 #include "media/media_features.h" 7 #include "media/media_features.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 // Enables testing features of the Plugin Placeholder. For internal use only. 438 // Enables testing features of the Plugin Placeholder. For internal use only.
439 const char kEnablePluginPlaceholderTesting[] = 439 const char kEnablePluginPlaceholderTesting[] =
440 "enable-plugin-placeholder-testing"; 440 "enable-plugin-placeholder-testing";
441 441
442 // Make the values returned to window.performance.memory more granular and more 442 // Make the values returned to window.performance.memory more granular and more
443 // up to date in shared worker. Without this flag, the memory information is 443 // up to date in shared worker. Without this flag, the memory information is
444 // still available, but it is bucketized and updated less frequently. This flag 444 // still available, but it is bucketized and updated less frequently. This flag
445 // also applys to workers. 445 // also applys to workers.
446 const char kEnablePreciseMemoryInfo[] = "enable-precise-memory-info"; 446 const char kEnablePreciseMemoryInfo[] = "enable-precise-memory-info";
447 447
448 // Enables PrintBrowser mode, in which everything renders as though printed
nasko 2017/02/07 19:46:13 nit: End sentence with a period.
gozzard 2017/02/08 00:49:51 Done.
449 const char kEnablePrintBrowser[] = "enable-print-browser";
450
448 // Enables RGBA_4444 textures. 451 // Enables RGBA_4444 textures.
449 const char kEnableRGBA4444Textures[] = "enable-rgba-4444-textures"; 452 const char kEnableRGBA4444Textures[] = "enable-rgba-4444-textures";
450 453
451 // Set options to cache V8 data. (off, preparse data, or code) 454 // Set options to cache V8 data. (off, preparse data, or code)
452 const char kV8CacheOptions[] = "v8-cache-options"; 455 const char kV8CacheOptions[] = "v8-cache-options";
453 456
454 // Signals that the V8 natives file has been transfered to the child process 457 // Signals that the V8 natives file has been transfered to the child process
455 // by a file descriptor. 458 // by a file descriptor.
456 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd"; 459 const char kV8NativesPassedByFD[] = "v8-natives-passed-by-fd";
457 460
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
1096 // the given directory. Used primarily to gather samples for IPC fuzzing. 1099 // the given directory. Used primarily to gather samples for IPC fuzzing.
1097 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1100 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1098 1101
1099 // Specifies the testcase used by the IPC fuzzer. 1102 // Specifies the testcase used by the IPC fuzzer.
1100 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1103 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1101 #endif 1104 #endif
1102 1105
1103 // Don't dump stuff here, follow the same order as the header. 1106 // Don't dump stuff here, follow the same order as the header.
1104 1107
1105 } // namespace switches 1108 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698