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

Side by Side Diff: Source/bindings/v8/ScheduledAction.cpp

Issue 24758003: ScriptController: limit script execution API to executeScript and callFunction, pass valid ScriptEx… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: w/ ScheduledAction executing in given context. Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/bindings/v8/NPV8Object.cpp ('k') | Source/bindings/v8/ScriptController.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 } 83 }
84 } 84 }
85 85
86 void ScheduledAction::execute(Frame* frame) 86 void ScheduledAction::execute(Frame* frame)
87 { 87 {
88 v8::HandleScope handleScope(m_isolate); 88 v8::HandleScope handleScope(m_isolate);
89 89
90 v8::Handle<v8::Context> context = m_context.newLocal(m_isolate); 90 v8::Handle<v8::Context> context = m_context.newLocal(m_isolate);
91 if (context.IsEmpty()) 91 if (context.IsEmpty())
92 return; 92 return;
93 v8::Context::Scope scope(context);
94 93
95 TRACE_EVENT0("v8", "ScheduledAction::execute"); 94 TRACE_EVENT0("v8", "ScheduledAction::execute");
96 95
97 if (!m_function.isEmpty()) { 96 if (!m_function.isEmpty()) {
97 v8::Context::Scope scope(context);
98 Vector<v8::Handle<v8::Value> > args; 98 Vector<v8::Handle<v8::Value> > args;
99 createLocalHandlesForArgs(&args); 99 createLocalHandlesForArgs(&args);
100 frame->script()->callFunction(m_function.newLocal(m_isolate), context->G lobal(), args.size(), args.data()); 100 frame->script()->callFunction(m_function.newLocal(m_isolate), context->G lobal(), args.size(), args.data());
101 } else 101 } else {
102 frame->script()->compileAndRunScript(m_code); 102 frame->script()->executeScriptAndReturnValue(context, ScriptSourceCode(m _code));
103 }
103 104
104 // The frame might be invalid at this point because JavaScript could have re leased it. 105 // The frame might be invalid at this point because JavaScript could have re leased it.
105 } 106 }
106 107
107 void ScheduledAction::execute(WorkerGlobalScope* worker) 108 void ScheduledAction::execute(WorkerGlobalScope* worker)
108 { 109 {
109 ASSERT(worker->thread()->isCurrentThread()); 110 ASSERT(worker->thread()->isCurrentThread());
110 v8::HandleScope handleScope(m_isolate); 111 v8::HandleScope handleScope(m_isolate);
111 v8::Handle<v8::Context> context = m_context.newLocal(m_isolate); 112 v8::Handle<v8::Context> context = m_context.newLocal(m_isolate);
112 ASSERT(!context.IsEmpty()); 113 ASSERT(!context.IsEmpty());
113 v8::Context::Scope scope(context); 114 v8::Context::Scope scope(context);
114 if (!m_function.isEmpty()) { 115 if (!m_function.isEmpty()) {
115 Vector<v8::Handle<v8::Value> > args; 116 Vector<v8::Handle<v8::Value> > args;
116 createLocalHandlesForArgs(&args); 117 createLocalHandlesForArgs(&args);
117 V8ScriptRunner::callFunction(m_function.newLocal(m_isolate), worker, con text->Global(), args.size(), args.data(), m_isolate); 118 V8ScriptRunner::callFunction(m_function.newLocal(m_isolate), worker, con text->Global(), args.size(), args.data(), m_isolate);
118 } else 119 } else
119 worker->script()->evaluate(m_code); 120 worker->script()->evaluate(m_code);
120 } 121 }
121 122
122 void ScheduledAction::createLocalHandlesForArgs(Vector<v8::Handle<v8::Value> >* handles) 123 void ScheduledAction::createLocalHandlesForArgs(Vector<v8::Handle<v8::Value> >* handles)
123 { 124 {
124 handles->reserveCapacity(m_args.size()); 125 handles->reserveCapacity(m_args.size());
125 for (size_t i = 0; i < m_args.size(); ++i) 126 for (size_t i = 0; i < m_args.size(); ++i)
126 handles->append(m_args[i].newLocal(m_isolate)); 127 handles->append(m_args[i].newLocal(m_isolate));
127 } 128 }
128 129
129 } // namespace WebCore 130 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/bindings/v8/NPV8Object.cpp ('k') | Source/bindings/v8/ScriptController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698