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

Side by Side Diff: extensions/common/switches.cc

Issue 2633253002: Split content script injections into multiple tasks (Closed)
Patch Set: Inject document_idle scripts before window.onload Created 3 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "extensions/common/switches.h" 5 #include "extensions/common/switches.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 // Pass launch source to platform apps. 90 // Pass launch source to platform apps.
91 const char kTraceAppSource[] = "enable-trace-app-source"; 91 const char kTraceAppSource[] = "enable-trace-app-source";
92 92
93 // Enables the use of C++-based extension bindings (instead of JS generation). 93 // Enables the use of C++-based extension bindings (instead of JS generation).
94 const char kNativeCrxBindings[] = "native-crx-bindings"; 94 const char kNativeCrxBindings[] = "native-crx-bindings";
95 95
96 // Enable package hash check: the .crx file sha256 hash sum should be equal to 96 // Enable package hash check: the .crx file sha256 hash sum should be equal to
97 // the one received from update manifest. 97 // the one received from update manifest.
98 const char kEnableCrxHashCheck[] = "enable-crx-hash-check"; 98 const char kEnableCrxHashCheck[] = "enable-crx-hash-check";
99 99
100 // Whether to split content script injections into multiple tasks.
101 const char kYieldBetweenContentScriptRuns[] =
102 "yield-between-content-script-runs";
103
100 } // namespace switches 104 } // namespace switches
101 105
102 } // namespace extensions 106 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698