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

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

Issue 2227593002: ServiceWorker: Implement StartWorker by using mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 // Sets options for MHTML generator to skip no-store resources: 661 // Sets options for MHTML generator to skip no-store resources:
662 // "skip-nostore-main" - fails to save a page if main frame is 'no-store' 662 // "skip-nostore-main" - fails to save a page if main frame is 'no-store'
663 // "skip-nostore-all" - also skips no-store subresources. 663 // "skip-nostore-all" - also skips no-store subresources.
664 const char kMHTMLGeneratorOption[] = "mhtml-generator-option"; 664 const char kMHTMLGeneratorOption[] = "mhtml-generator-option";
665 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main"; 665 const char kMHTMLSkipNostoreMain[] = "skip-nostore-main";
666 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all"; 666 const char kMHTMLSkipNostoreAll[] = "skip-nostore-all";
667 667
668 // Use a Mojo-based LocalStorage implementation. 668 // Use a Mojo-based LocalStorage implementation.
669 const char kMojoLocalStorage[] = "mojo-local-storage"; 669 const char kMojoLocalStorage[] = "mojo-local-storage";
670 670
671 // Use a Mojo-based ServiceWorker implimentation.
672 const char kMojoServiceWorker[] = "mojo-service-worker";
673
671 // Mutes audio sent to the audio device so it is not audible during 674 // Mutes audio sent to the audio device so it is not audible during
672 // automated testing. 675 // automated testing.
673 const char kMuteAudio[] = "mute-audio"; 676 const char kMuteAudio[] = "mute-audio";
674 677
675 // Don't send HTTP-Referer headers. 678 // Don't send HTTP-Referer headers.
676 const char kNoReferrers[] = "no-referrers"; 679 const char kNoReferrers[] = "no-referrers";
677 680
678 // Disables the sandbox for all process types that are normally sandboxed. 681 // Disables the sandbox for all process types that are normally sandboxed.
679 const char kNoSandbox[] = "no-sandbox"; 682 const char kNoSandbox[] = "no-sandbox";
680 683
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
1079 // the given directory. Used primarily to gather samples for IPC fuzzing. 1082 // the given directory. Used primarily to gather samples for IPC fuzzing.
1080 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1083 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1081 1084
1082 // Specifies the testcase used by the IPC fuzzer. 1085 // Specifies the testcase used by the IPC fuzzer.
1083 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1086 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1084 #endif 1087 #endif
1085 1088
1086 // Don't dump stuff here, follow the same order as the header. 1089 // Don't dump stuff here, follow the same order as the header.
1087 1090
1088 } // namespace switches 1091 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698