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

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

Issue 2094583002: Add MemoryCoordinator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gyp Created 4 years, 6 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 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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 // Dynamically apply color profiles to web content images. 399 // Dynamically apply color profiles to web content images.
400 const char kEnableImageColorProfiles[] = "enable-image-color-profiles"; 400 const char kEnableImageColorProfiles[] = "enable-image-color-profiles";
401 401
402 // Force logging to be enabled. Logging is disabled by default in release 402 // Force logging to be enabled. Logging is disabled by default in release
403 // builds. 403 // builds.
404 const char kEnableLogging[] = "enable-logging"; 404 const char kEnableLogging[] = "enable-logging";
405 405
406 // Enables the memory benchmarking extension 406 // Enables the memory benchmarking extension
407 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; 407 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking";
408 408
409 // Enables the memory coordinator
410 const char kEnableMemoryCoordinator[] = "enable-memory-coordinator";
bashi 2016/06/27 03:49:29 I'll switch to use base::FeatureList
bashi 2016/06/27 10:18:14 Done.
411
409 // Enables the network information API. 412 // Enables the network information API.
410 const char kEnableNetworkInformation[] = "enable-network-information"; 413 const char kEnableNetworkInformation[] = "enable-network-information";
411 414
412 // Enables compositor-accelerated touch-screen pinch gestures. 415 // Enables compositor-accelerated touch-screen pinch gestures.
413 const char kEnablePinch[] = "enable-pinch"; 416 const char kEnablePinch[] = "enable-pinch";
414 417
415 // Enables testing features of the Plugin Placeholder. For internal use only. 418 // Enables testing features of the Plugin Placeholder. For internal use only.
416 const char kEnablePluginPlaceholderTesting[] = 419 const char kEnablePluginPlaceholderTesting[] =
417 "enable-plugin-placeholder-testing"; 420 "enable-plugin-placeholder-testing";
418 421
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after
1050 // the given directory. Used primarily to gather samples for IPC fuzzing. 1053 // the given directory. Used primarily to gather samples for IPC fuzzing.
1051 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1054 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1052 1055
1053 // Specifies the testcase used by the IPC fuzzer. 1056 // Specifies the testcase used by the IPC fuzzer.
1054 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1057 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1055 #endif 1058 #endif
1056 1059
1057 // Don't dump stuff here, follow the same order as the header. 1060 // Don't dump stuff here, follow the same order as the header.
1058 1061
1059 } // namespace switches 1062 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698