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

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

Issue 1738663002: Hook embedded shell up to MojoShellConnection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 // Dynamically apply color profiles to web content images. 385 // Dynamically apply color profiles to web content images.
386 const char kEnableImageColorProfiles[] = "enable-image-color-profiles"; 386 const char kEnableImageColorProfiles[] = "enable-image-color-profiles";
387 387
388 // Force logging to be enabled. Logging is disabled by default in release 388 // Force logging to be enabled. Logging is disabled by default in release
389 // builds. 389 // builds.
390 const char kEnableLogging[] = "enable-logging"; 390 const char kEnableLogging[] = "enable-logging";
391 391
392 // Enables the memory benchmarking extension 392 // Enables the memory benchmarking extension
393 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; 393 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking";
394 394
395 // Enable the Mojo shell connection in renderers.
396 const char kEnableMojoShellConnection[] = "enable-mojo-shell-connection";
397
398 // Enables the network information API. 395 // Enables the network information API.
399 const char kEnableNetworkInformation[] = "enable-network-information"; 396 const char kEnableNetworkInformation[] = "enable-network-information";
400 397
401 // Enables non-validating reload on reload-to-refresh-content (e.g. pull- 398 // Enables non-validating reload on reload-to-refresh-content (e.g. pull-
402 // to-refresh). 399 // to-refresh).
403 const char kEnableNonValidatingReloadOnRefreshContent[] = 400 const char kEnableNonValidatingReloadOnRefreshContent[] =
404 "enable-non-validating-reload-on-refresh-content"; 401 "enable-non-validating-reload-on-refresh-content";
405 402
406 // Enables action button icons for the Web Notification API. 403 // Enables action button icons for the Web Notification API.
407 const char kEnableNotificationActionIcons[] = 404 const char kEnableNotificationActionIcons[] =
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; 1054 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb";
1058 1055
1059 // Enables the exporting of the tracing events to ETW. This is only supported on 1056 // Enables the exporting of the tracing events to ETW. This is only supported on
1060 // Windows Vista and later. 1057 // Windows Vista and later.
1061 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 1058 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
1062 #endif 1059 #endif
1063 1060
1064 // Don't dump stuff here, follow the same order as the header. 1061 // Don't dump stuff here, follow the same order as the header.
1065 1062
1066 } // namespace switches 1063 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698