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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/ScheduledAction.cpp

Issue 1726903002: Rename WorkerOrWorkletGlobalScope::script() to scriptController() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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 /* 1 /*
2 * Copyright (C) 2007-2009 Google Inc. All rights reserved. 2 * Copyright (C) 2007-2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 void ScheduledAction::execute(WorkerGlobalScope* worker) 128 void ScheduledAction::execute(WorkerGlobalScope* worker)
129 { 129 {
130 ASSERT(worker->thread()->isCurrentThread()); 130 ASSERT(worker->thread()->isCurrentThread());
131 ASSERT(m_scriptState->contextIsValid()); 131 ASSERT(m_scriptState->contextIsValid());
132 if (!m_function.isEmpty()) { 132 if (!m_function.isEmpty()) {
133 ScriptState::Scope scope(m_scriptState.get()); 133 ScriptState::Scope scope(m_scriptState.get());
134 Vector<v8::Local<v8::Value>> info; 134 Vector<v8::Local<v8::Value>> info;
135 createLocalHandlesForArgs(&info); 135 createLocalHandlesForArgs(&info);
136 V8ScriptRunner::callFunction(m_function.newLocal(m_scriptState->isolate( )), worker, m_scriptState->context()->Global(), info.size(), info.data(), m_scri ptState->isolate()); 136 V8ScriptRunner::callFunction(m_function.newLocal(m_scriptState->isolate( )), worker, m_scriptState->context()->Global(), info.size(), info.data(), m_scri ptState->isolate());
137 } else { 137 } else {
138 worker->script()->evaluate(m_code); 138 worker->scriptController()->evaluate(m_code);
139 } 139 }
140 } 140 }
141 141
142 void ScheduledAction::createLocalHandlesForArgs(Vector<v8::Local<v8::Value>>* ha ndles) 142 void ScheduledAction::createLocalHandlesForArgs(Vector<v8::Local<v8::Value>>* ha ndles)
143 { 143 {
144 handles->reserveCapacity(m_info.Size()); 144 handles->reserveCapacity(m_info.Size());
145 for (size_t i = 0; i < m_info.Size(); ++i) 145 for (size_t i = 0; i < m_info.Size(); ++i)
146 handles->append(m_info.Get(i)); 146 handles->append(m_info.Get(i));
147 } 147 }
148 148
149 } // namespace blink 149 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/bindings/core/v8/ActiveDOMCallback.cpp ('k') | third_party/WebKit/Source/bindings/core/v8/ToV8.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698