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

  /external/chromium_org/content/shell/renderer/test_runner/
MockColorChooser.h 17 class WebTestProxyBase;
21 MockColorChooser(blink::WebColorChooserClient*, WebTestDelegate*, WebTestProxyBase*);
34 WebTestProxyBase* m_proxy;
TestInterfaces.h 35 class WebTestProxyBase;
42 void setWebView(blink::WebView*, WebTestProxyBase*);
50 void windowOpened(WebTestProxyBase*);
51 void windowClosed(WebTestProxyBase*);
57 WebTestProxyBase* proxy();
58 const std::vector<WebTestProxyBase*>& windowList();
68 WebTestProxyBase* m_proxy;
70 std::vector<WebTestProxyBase*> m_windowList;
SpellCheckClient.h 16 class WebTestProxyBase;
20 explicit SpellCheckClient(WebTestProxyBase*);
50 WebTestProxyBase* m_webTestProxy;
web_test_proxy.cc 53 class HostMethodTask : public WebMethodTask<WebTestProxyBase> {
55 typedef void (WebTestProxyBase::*CallbackMethodType)();
56 HostMethodTask(WebTestProxyBase* object, CallbackMethodType callback)
57 : WebMethodTask<WebTestProxyBase>(object), callback_(callback) {}
303 const std::vector<WebTestProxyBase*>& window_list = interfaces->windowList();
310 WebTestProxyBase::WebTestProxyBase()
319 WebTestProxyBase::~WebTestProxyBase() {
323 void WebTestProxyBase::SetInterfaces(WebTestInterfaces* interfaces)
    [all...]
web_test_proxy.h 87 // WebTestProxyBase is the "brain" of WebTestProxy in the sense that
88 // WebTestProxy does the bridge between RenderViewImpl and WebTestProxyBase and
90 // WebTestProxyBase that implements the expected behavior.
92 class WebTestProxyBase : public blink::WebCompositeAndReadbackAsyncCallback {
145 WebTestProxyBase();
146 ~WebTestProxyBase();
276 DISALLOW_COPY_AND_ASSIGN(WebTestProxyBase);
285 // WebTestProxyBase, that means that there is no logic living in this class
290 // fooClient() call and have WebTestProxyBase return the mock implementation.
292 // override RenderViewImpl's getter and call a getter from WebTestProxyBase
    [all...]
WebTestInterfaces.h 28 class WebTestProxyBase;
36 void setWebView(blink::WebView*, WebTestProxyBase*);
TestInterfaces.cpp 64 void TestInterfaces::setWebView(WebView* webView, WebTestProxyBase* proxy)
145 void TestInterfaces::windowOpened(WebTestProxyBase* proxy)
150 void TestInterfaces::windowClosed(WebTestProxyBase* proxy)
152 vector<WebTestProxyBase*>::iterator pos = find(m_windowList.begin(), m_windowList.end(), proxy);
180 WebTestProxyBase* TestInterfaces::proxy()
185 const vector<WebTestProxyBase*>& TestInterfaces::windowList()
WebTestDelegate.h 34 class WebTestProxyBase;
123 virtual void setFocus(WebTestProxyBase*, bool) = 0;
156 // with the given WebTestProxyBase.
157 virtual std::string dumpHistoryForWindow(WebTestProxyBase*) = 0;
MockColorChooser.cpp 31 MockColorChooser::MockColorChooser(blink::WebColorChooserClient* client, WebTestDelegate* delegate, WebTestProxyBase* proxy)
WebTestInterfaces.cpp 27 void WebTestInterfaces::setWebView(WebView* webView, WebTestProxyBase* proxy)
test_runner.h 41 class WebTestProxyBase;
52 void SetWebView(blink::WebView*, WebTestProxyBase*);
73 // Methods used by WebTestProxyBase.
733 WebTestProxyBase* proxy_;
SpellCheckClient.cpp 36 SpellCheckClient::SpellCheckClient(WebTestProxyBase* webTestProxy)
web_frame_test_proxy.h 27 void set_base_proxy(WebTestProxyBase* proxy) { base_proxy_ = proxy; }
285 WebTestProxyBase* base_proxy_;
event_sender.cc     [all...]
test_runner.cc     [all...]
  /external/chromium_org/content/shell/renderer/
webkit_test_runner.h 34 class WebTestProxyBase;
97 virtual void setFocus(WebTestProxyBase* proxy, bool focus) OVERRIDE;
110 virtual std::string dumpHistoryForWindow(WebTestProxyBase* proxy) OVERRIDE;
114 void set_proxy(WebTestProxyBase* proxy) { proxy_ = proxy; }
115 WebTestProxyBase* proxy() const { return proxy_; }
136 WebTestProxyBase* proxy_;
shell_content_renderer_client.h 22 class WebTestProxyBase;
51 void WebTestProxyCreated(RenderView* render_view, WebTestProxyBase* proxy);
shell_content_renderer_client.cc 183 WebTestProxyBase* proxy) {
webkit_test_runner.cc 116 explicit ProxyToRenderViewVisitor(WebTestProxyBase* proxy)
138 WebTestProxyBase* proxy_;
411 void WebKitTestRunner::setFocus(WebTestProxyBase* proxy, bool focus) {
514 std::string WebKitTestRunner::dumpHistoryForWindow(WebTestProxyBase* proxy) {
  /external/chromium_org/content/public/test/
layouttest_support.h 31 class WebTestProxyBase;
43 // |callback| is invoked with a pointer to WebTestProxyBase for each created
46 const base::Callback<void(RenderView*, WebTestProxyBase*)>& callback);
  /external/chromium_org/content/test/
layouttest_support.cc 44 base::LazyInstance<base::Callback<void(RenderView*, WebTestProxyBase*)> >::Leaky
56 WebTestProxyBase* GetWebTestProxyBase(RenderViewImpl* render_view) {
60 return static_cast<WebTestProxyBase*>(render_view_proxy);
78 const base::Callback<void(RenderView*, WebTestProxyBase*)>& callback) {

Completed in 140 milliseconds