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

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

Issue 2375943002: Revert of ServiceWorker: Implement StartWorker by using mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 2 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') | content/renderer/BUILD.gn » ('j') | 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 "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 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 // Sets options for MHTML generator to skip no-store resources: 646 // Sets options for MHTML generator to skip no-store resources:
647 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' 647 // "skip-nostore-main" - fails to save a page if main frame is 'no-store'
648 // "skip-nostore-all" - also skips no-store subresources. 648 // "skip-nostore-all" - also skips no-store subresources.
649 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; 649 const char kMHTMLGeneratorOption[] = "mhtml-generator-option";
650 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; 650 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main";
651 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; 651 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all";
652 652
653 // Use a Mojo-based LocalStorage implementation. 653 // Use a Mojo-based LocalStorage implementation.
654 const char kMojoLocalStorage[] = "mojo-local-storage"; 654 const char kMojoLocalStorage[] = "mojo-local-storage";
655 655
656 // Use a Mojo-based ServiceWorker implementation.
657 const char kMojoServiceWorker[] = "mojo-service-worker";
658
659 // Mutes audio sent to the audio device so it is not audible during 656 // Mutes audio sent to the audio device so it is not audible during
660 // automated testing. 657 // automated testing.
661 const char kMuteAudio[] = "mute-audio"; 658 const char kMuteAudio[] = "mute-audio";
662 659
663 // Don't send HTTP-Referer headers. 660 // Don't send HTTP-Referer headers.
664 const char kNoReferrers[] = "no-referrers"; 661 const char kNoReferrers[] = "no-referrers";
665 662
666 // Disables the sandbox for all process types that are normally sandboxed. 663 // Disables the sandbox for all process types that are normally sandboxed.
667 const char kNoSandbox[] = "no-sandbox"; 664 const char kNoSandbox[] = "no-sandbox";
668 665
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
1077 // the given directory. Used primarily to gather samples for IPC fuzzing. 1074 // the given directory. Used primarily to gather samples for IPC fuzzing.
1078 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1075 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1079 1076
1080 // Specifies the testcase used by the IPC fuzzer. 1077 // Specifies the testcase used by the IPC fuzzer.
1081 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1078 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1082 #endif 1079 #endif
1083 1080
1084 // Don't dump stuff here, follow the same order as the header. 1081 // Don't dump stuff here, follow the same order as the header.
1085 1082
1086 } // namespace switches 1083 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698