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

Unified Diff: Source/bindings/core/v8/custom/V8WorkerGlobalScopeCustom.cpp

Issue 660863002: [DevTools] Added public method for async execution of scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: platform/WebExecuteScriptCallback -> web/WebScriptCallback Created 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/bindings/core/v8/custom/V8WorkerGlobalScopeCustom.cpp
diff --git a/Source/bindings/core/v8/custom/V8WorkerGlobalScopeCustom.cpp b/Source/bindings/core/v8/custom/V8WorkerGlobalScopeCustom.cpp
index 2fff589d233bc064c8d2bbfa1e9457fc2c5c7c62..6d606bf9ac0a5a77adfd24931582045a95a2848b 100644
--- a/Source/bindings/core/v8/custom/V8WorkerGlobalScopeCustom.cpp
+++ b/Source/bindings/core/v8/custom/V8WorkerGlobalScopeCustom.cpp
@@ -61,7 +61,7 @@ static void setTimeoutOrInterval(const v8::FunctionCallbackInfo<v8::Value>& info
return;
ScriptState* scriptState = ScriptState::current(info.GetIsolate());
- OwnPtr<ScheduledAction> action;
+ OwnPtr<ScheduledActionBase> action;
if (function->IsString()) {
if (ContentSecurityPolicy* policy = workerGlobalScope->contentSecurityPolicy()) {
if (!policy->allowEval()) {

Powered by Google App Engine
This is Rietveld 408576698