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

Side by Side Diff: Source/bindings/core/v8/ScheduledAction.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 unified diff | Download patch
OLDNEW
1 /* 1 // Copyright 2014 The Chromium Authors. All rights reserved.
vsevik 2014/10/17 13:19:43 You should change the copyright header in new file
2 * Copyright (C) 2007-2009 Google Inc. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be
3 * 3 // found in the LICENSE file.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30 4
31 #include "config.h" 5 #include "config.h"
32 #include "bindings/core/v8/ScheduledAction.h" 6 #include "bindings/core/v8/ScheduledAction.h"
33 7
34 #include "bindings/core/v8/ScriptController.h" 8 #include "bindings/core/v8/ScriptController.h"
35 #include "bindings/core/v8/ScriptSourceCode.h" 9 #include "bindings/core/v8/ScriptSourceCode.h"
36 #include "bindings/core/v8/V8Binding.h" 10 #include "bindings/core/v8/V8Binding.h"
37 #include "bindings/core/v8/V8GCController.h" 11 #include "bindings/core/v8/V8GCController.h"
38 #include "bindings/core/v8/V8ScriptRunner.h" 12 #include "bindings/core/v8/V8ScriptRunner.h"
39 #include "core/dom/Document.h"
40 #include "core/dom/ExecutionContext.h"
41 #include "core/frame/LocalFrame.h" 13 #include "core/frame/LocalFrame.h"
42 #include "core/workers/WorkerGlobalScope.h" 14 #include "core/workers/WorkerGlobalScope.h"
43 #include "core/workers/WorkerThread.h" 15 #include "core/workers/WorkerThread.h"
44 #include "platform/Logging.h" 16 #include "platform/Logging.h"
45 #include "platform/TraceEvent.h" 17 #include "platform/TraceEvent.h"
46 18
47 namespace blink { 19 namespace blink {
48 20
49 ScheduledAction::ScheduledAction(ScriptState* scriptState, v8::Handle<v8::Functi on> function, int argc, v8::Handle<v8::Value> argv[], v8::Isolate* isolate) 21 ScheduledAction::ScheduledAction(ScriptState* scriptState, v8::Handle<v8::Functi on> function, int argc, v8::Handle<v8::Value> argv[], v8::Isolate* isolate)
50 : m_scriptState(scriptState) 22 : m_scriptState(scriptState)
(...skipping 10 matching lines...) Expand all
61 : m_scriptState(scriptState) 33 : m_scriptState(scriptState)
62 , m_info(isolate) 34 , m_info(isolate)
63 , m_code(code, url) 35 , m_code(code, url)
64 { 36 {
65 } 37 }
66 38
67 ScheduledAction::~ScheduledAction() 39 ScheduledAction::~ScheduledAction()
68 { 40 {
69 } 41 }
70 42
71 void ScheduledAction::execute(ExecutionContext* context)
72 {
73 if (context->isDocument()) {
74 LocalFrame* frame = toDocument(context)->frame();
75 if (!frame) {
76 WTF_LOG(Timers, "ScheduledAction::execute %p: no frame", this);
77 return;
78 }
79 if (!frame->script().canExecuteScripts(AboutToExecuteScript)) {
80 WTF_LOG(Timers, "ScheduledAction::execute %p: frame can not execute scripts", this);
81 return;
82 }
83 execute(frame);
84 } else {
85 WTF_LOG(Timers, "ScheduledAction::execute %p: worker scope", this);
86 execute(toWorkerGlobalScope(context));
87 }
88 }
89
90 void ScheduledAction::execute(LocalFrame* frame) 43 void ScheduledAction::execute(LocalFrame* frame)
91 { 44 {
92 if (!m_scriptState->contextIsValid()) { 45 if (!m_scriptState->contextIsValid()) {
93 WTF_LOG(Timers, "ScheduledAction::execute %p: context is empty", this); 46 WTF_LOG(Timers, "ScheduledAction::execute %p: context is empty", this);
94 return; 47 return;
95 } 48 }
96 49
97 TRACE_EVENT0("v8", "ScheduledAction::execute"); 50 TRACE_EVENT0("v8", "ScheduledAction::execute");
98 ScriptState::Scope scope(m_scriptState.get()); 51 ScriptState::Scope scope(m_scriptState.get());
99 if (!m_function.isEmpty()) { 52 if (!m_function.isEmpty()) {
(...skipping 24 matching lines...) Expand all
124 } 77 }
125 78
126 void ScheduledAction::createLocalHandlesForArgs(Vector<v8::Handle<v8::Value> >* handles) 79 void ScheduledAction::createLocalHandlesForArgs(Vector<v8::Handle<v8::Value> >* handles)
127 { 80 {
128 handles->reserveCapacity(m_info.Size()); 81 handles->reserveCapacity(m_info.Size());
129 for (size_t i = 0; i < m_info.Size(); ++i) 82 for (size_t i = 0; i < m_info.Size(); ++i)
130 handles->append(m_info.Get(i)); 83 handles->append(m_info.Get(i));
131 } 84 }
132 85
133 } // namespace blink 86 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698