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

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

Issue 154263004: Add commandline flag for ServiceWroker in the renderer process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporated kinuko's comment Created 6 years, 9 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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 405
406 // Defer image decoding in WebKit until painting. 406 // Defer image decoding in WebKit until painting.
407 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; 407 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding";
408 408
409 // Enables delegated renderer. 409 // Enables delegated renderer.
410 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; 410 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer";
411 411
412 // Enables restarting interrupted downloads. 412 // Enables restarting interrupted downloads.
413 const char kEnableDownloadResumption[] = "enable-download-resumption"; 413 const char kEnableDownloadResumption[] = "enable-download-resumption";
414 414
415 // Enables running the SharedWorker inside the renderer process.
416 const char kEnableEmbeddedSharedWorker[] = "enable-embedded-shared-worker";
417
415 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). 418 // Enables support for Encrypted Media Extensions (e.g. MediaKeys).
416 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; 419 const char kEnableEncryptedMedia[] = "enable-encrypted-media";
417 420
418 // Enable experimental canvas features, e.g. canvas 2D context attributes 421 // Enable experimental canvas features, e.g. canvas 2D context attributes
419 const char kEnableExperimentalCanvasFeatures[] = 422 const char kEnableExperimentalCanvasFeatures[] =
420 "enable-experimental-canvas-features"; 423 "enable-experimental-canvas-features";
421 424
422 // Enables Web Platform features that are in development. 425 // Enables Web Platform features that are in development.
423 const char kEnableExperimentalWebPlatformFeatures[] = 426 const char kEnableExperimentalWebPlatformFeatures[] =
424 "enable-experimental-web-platform-features"; 427 "enable-experimental-web-platform-features";
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after
1039 #endif 1042 #endif
1040 1043
1041 #if defined(OS_POSIX) 1044 #if defined(OS_POSIX)
1042 // Causes the child processes to cleanly exit via calling exit(). 1045 // Causes the child processes to cleanly exit via calling exit().
1043 const char kChildCleanExit[] = "child-clean-exit"; 1046 const char kChildCleanExit[] = "child-clean-exit";
1044 #endif 1047 #endif
1045 1048
1046 // Don't dump stuff here, follow the same order as the header. 1049 // Don't dump stuff here, follow the same order as the header.
1047 1050
1048 } // namespace switches 1051 } // 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