HomeSort by relevance Sort by last modified time
    Searched refs:WebScriptSource (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/third_party/WebKit/public/web/
WebScriptSource.h 39 struct WebScriptSource {
44 WebScriptSource(const WebString& code)
46 WebScriptSource(const WebString& code, const WebURL& url)
48 WebScriptSource(const WebString& code, const WebURL& url, int startLine)
WebFrame.h 91 struct WebScriptSource;
261 virtual void executeScript(const WebScriptSource&) = 0;
274 int worldID, const WebScriptSource* sources, unsigned numSources,
306 const WebScriptSource&) = 0;
311 int worldID, const WebScriptSource* sourcesIn, unsigned numSources,
  /external/chromium_org/chrome/renderer/translate/
translate_script_browsertest.cc 11 #include "third_party/WebKit/public/web/WebScriptSource.h"
15 using blink::WebScriptSource;
88 WebScriptSource source = WebScriptSource(base::ASCIIToUTF16(script));
114 WebScriptSource source = WebScriptSource(base::ASCIIToUTF16(script));
128 WebScriptSource source = WebScriptSource(base::ASCIIToUTF16(script));
translate_helper.cc 40 #include "third_party/WebKit/public/web/WebScriptSource.h"
52 using blink::WebScriptSource;
271 WebScriptSource source = WebScriptSource(ASCIIToUTF16(script));
287 WebScriptSource source = WebScriptSource(ASCIIToUTF16(script));
310 WebScriptSource source = WebScriptSource(ASCIIToUTF16(script));
337 WebScriptSource source = WebScriptSource(ASCIIToUTF16(script))
    [all...]
  /external/chromium_org/chrome/test/base/
chrome_render_view_test.cc 31 #include "third_party/WebKit/public/web/WebScriptSource.h"
38 using blink::WebScriptSource;
  /external/chromium_org/extensions/renderer/
script_injection.cc 25 #include "third_party/WebKit/public/web/WebScriptSource.h"
49 blink::WebScriptSource source;
52 // The below constructor, monstrous as it is, just makes a WebScriptSource from
55 : source(blink::WebScriptSource(blink::WebString::fromUTF8(
302 std::vector<blink::WebScriptSource> sources;
317 sources.push_back(blink::WebScriptSource(
337 for (std::vector<blink::WebScriptSource>::const_iterator iter =
user_script_scheduler.cc 27 #include "third_party/WebKit/public/web/WebScriptSource.h"
213 blink::WebScriptSource source(
227 std::vector<blink::WebScriptSource> sources;
  /external/chromium_org/content/renderer/
web_ui_runner.cc 13 #include "third_party/WebKit/public/web/WebScriptSource.h"
55 blink::WebScriptSource(blink::WebString::fromUTF8(source)));
render_frame_impl.cc 104 #include "third_party/WebKit/public/web/WebScriptSource.h"
157 using blink::WebScriptSource;
    [all...]
render_view_impl.cc 172 #include "third_party/WebKit/public/web/WebScriptSource.h"
278 using blink::WebScriptSource;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebLocalFrameImpl.h 113 virtual void executeScript(const WebScriptSource&) OVERRIDE;
115 int worldID, const WebScriptSource* sources, unsigned numSources,
123 const WebScriptSource&) OVERRIDE;
125 int worldID, const WebScriptSource* sourcesIn, unsigned numSources,
WebRemoteFrameImpl.h 60 virtual void executeScript(const WebScriptSource&) OVERRIDE;
62 int worldID, const WebScriptSource* sources, unsigned numSources,
70 const WebScriptSource&) OVERRIDE;
72 int worldID, const WebScriptSource* sourcesIn, unsigned numSources,
WebRemoteFrameImpl.cpp 287 void WebRemoteFrameImpl::executeScript(const WebScriptSource&)
293 int worldID, const WebScriptSource* sources, unsigned numSources,
326 const WebScriptSource&)
333 int worldID, const WebScriptSource* sourcesIn, unsigned numSources,
WebLocalFrameImpl.cpp 177 #include "public/web/WebScriptSource.h"
706 void WebLocalFrameImpl::executeScript(const WebScriptSource& source)
714 void WebLocalFrameImpl::executeScriptInIsolatedWorld(int worldID, const WebScriptSource* sourcesIn, unsigned numSources, int extensionGroup)
783 v8::Handle<v8::Value> WebLocalFrameImpl::executeScriptAndReturnValue(const WebScriptSource& source)
797 void WebLocalFrameImpl::executeScriptInIsolatedWorld(int worldID, const WebScriptSource* sourcesIn, unsigned numSources, int extensionGroup, WebVector<v8::Local<v8::Value> >* results)
    [all...]
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_browsertest.cc 24 #include "third_party/WebKit/public/web/WebScriptSource.h"
98 blink::WebScriptSource(blink::WebString::fromUTF8(script.c_str())));
113 blink::WebScriptSource(blink::WebString::fromUTF8(script.c_str())));
126 blink::WebScriptSource(blink::WebString::fromUTF8(script.c_str())));
  /external/chromium_org/content/public/test/
render_view_test.cc 31 #include "third_party/WebKit/public/web/WebScriptSource.h"
43 using blink::WebScriptSource;
99 GetMainFrame()->executeScript(WebScriptSource(WebString::fromUTF8(js)));
107 GetMainFrame()->executeScriptAndReturnValue(WebScriptSource(script));
290 WebScriptSource(WebString::fromUTF8(script)));
  /external/chromium_org/components/plugins/renderer/
plugin_placeholder.cc 24 #include "third_party/WebKit/public/web/WebScriptSource.h"
36 using blink::WebScriptSource;
166 WebScriptSource(base::ASCIIToUTF16(script)));
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp 78 #include "public/web/WebScriptSource.h"
393 m_frame->executeScript(WebScriptSource(code));
    [all...]
PrerenderingTest.cpp 40 #include "public/web/WebScriptSource.h"
236 m_webViewHelper.webView()->mainFrame()->executeScript(WebScriptSource(WebString::fromUTF8(code)));
PinchViewportTest.cpp 21 #include "public/web/WebScriptSource.h"
620 mainFrame->executeScript(WebScriptSource("selectRange();"));
ViewportTest.cpp 48 #include "public/web/WebScriptSource.h"
96 frame->executeScript(WebScriptSource(code));
    [all...]
  /external/chromium_org/content/shell/renderer/
webkit_test_runner.cc 61 #include "third_party/WebKit/public/web/WebScriptSource.h"
80 using blink::WebScriptSource;
704 WebScriptSource(WebString::fromUTF8("testRunner.notifyDone();")));
  /external/chromium_org/content/shell/renderer/test_runner/
test_runner.cc 41 #include "third_party/WebKit/public/web/WebScriptSource.h"
    [all...]
  /external/chromium_org/chrome/renderer/searchbox/
searchbox_extension.cc 24 #include "third_party/WebKit/public/web/WebScriptSource.h"
83 frame->executeScript(blink::WebScriptSource(script));
468 blink::WebScriptSource(kSupportsInstantScript));
    [all...]

Completed in 1077 milliseconds