OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebTestProxyBase
(Results
1 - 21
of
21
) sorted by null
/external/chromium_org/third_party/WebKit/Source/testing/runner/
MockColorChooser.h
43
class
WebTestProxyBase
;
46
MockColorChooser(blink::WebColorChooserClient*, WebTestDelegate*,
WebTestProxyBase
*);
58
WebTestProxyBase
* m_proxy;
TestInterfaces.h
62
class
WebTestProxyBase
;
69
void setWebView(blink::WebView*,
WebTestProxyBase
*);
77
void windowOpened(
WebTestProxyBase
*);
78
void windowClosed(
WebTestProxyBase
*);
84
WebTestProxyBase
* proxy();
85
const std::vector<
WebTestProxyBase
*>& windowList();
95
WebTestProxyBase
* m_proxy;
97
std::vector<
WebTestProxyBase
*> m_windowList;
WebTestProxy.cpp
82
class HostMethodTask : public WebMethodTask<
WebTestProxyBase
> {
84
typedef void (
WebTestProxyBase
::*CallbackMethodType)();
85
HostMethodTask(
WebTestProxyBase
* object, CallbackMethodType callback)
86
: WebMethodTask<
WebTestProxyBase
>(object)
380
const vector<
WebTestProxyBase
*>& windowList = interfaces->windowList();
392
WebTestProxyBase
::
WebTestProxyBase
()
403
WebTestProxyBase
::~
WebTestProxyBase
()
408
void
WebTestProxyBase
::setInterfaces(WebTestInterfaces* interfaces
[
all
...]
SpellCheckClient.h
42
class
WebTestProxyBase
;
46
explicit SpellCheckClient(
WebTestProxyBase
*);
76
WebTestProxyBase
* m_webTestProxy;
TestInterfaces.cpp
83
void TestInterfaces::setWebView(WebView* webView,
WebTestProxyBase
* proxy)
152
void TestInterfaces::windowOpened(
WebTestProxyBase
* proxy)
157
void TestInterfaces::windowClosed(
WebTestProxyBase
* proxy)
159
vector<
WebTestProxyBase
*>::iterator pos = find(m_windowList.begin(), m_windowList.end(), proxy);
187
WebTestProxyBase
* TestInterfaces::proxy()
192
const vector<
WebTestProxyBase
*>& TestInterfaces::windowList()
MockColorChooser.cpp
57
MockColorChooser::MockColorChooser(blink::WebColorChooserClient* client, WebTestDelegate* delegate,
WebTestProxyBase
* proxy)
WebTestInterfaces.cpp
53
void WebTestInterfaces::setWebView(WebView* webView,
WebTestProxyBase
* proxy)
TestRunner.h
65
class
WebTestProxyBase
;
73
void setWebView(blink::WebView*,
WebTestProxyBase
*);
89
// Methods used by
WebTestProxyBase
.
717
WebTestProxyBase
* m_proxy;
SpellCheckClient.cpp
62
SpellCheckClient::SpellCheckClient(
WebTestProxyBase
* webTestProxy)
TestRunner.cpp
343
void TestRunner::setWebView(WebView* webView,
WebTestProxyBase
* proxy)
[
all
...]
EventSender.cpp
777
const vector<
WebTestProxyBase
*>& windowList = m_testInterfaces->windowList();
786
const vector<
WebTestProxyBase
*>& windowList = m_testInterfaces->windowList();
[
all
...]
/external/chromium_org/third_party/WebKit/public/testing/
WebTestProxy.h
112
class WEBTESTRUNNER_EXPORT
WebTestProxyBase
{
158
WebTestProxyBase
();
159
~
WebTestProxyBase
();
268
WebTestProxyBase
(
WebTestProxyBase
&);
269
WebTestProxyBase
& operator=(const
WebTestProxyBase
&);
275
class WebTestProxy : public Base, public
WebTestProxyBase
, public blink::WebNonCopyable {
287
WebTestProxyBase
::didInvalidateRect(rect);
291
WebTestProxyBase
::didScrollRect(dx, dy, clipRect)
[
all
...]
WebTestInterfaces.h
55
class
WebTestProxyBase
;
63
void setWebView(blink::WebView*,
WebTestProxyBase
*);
WebTestDelegate.h
56
class
WebTestProxyBase
;
128
virtual void setFocus(
WebTestProxyBase
*, bool) = 0;
161
// given
WebTestProxyBase
as well as the index of the current entry.
162
virtual void captureHistoryForWindow(
WebTestProxyBase
*, blink::WebVector<blink::WebHistoryItem>*, size_t* currentEntryIndex) = 0;
WebFrameTestProxy.h
51
void setBaseProxy(
WebTestProxyBase
* proxy)
170
WebTestProxyBase
* m_baseProxy;
/external/chromium_org/content/public/test/
layouttest_support.h
18
class
WebTestProxyBase
;
35
// |callback| is invoked with a pointer to
WebTestProxyBase
for each created
38
void(RenderView*, WebTestRunner::
WebTestProxyBase
*)>& callback);
/external/chromium_org/content/shell/renderer/
webkit_test_runner.h
29
class
WebTestProxyBase
;
83
virtual void setFocus(WebTestRunner::
WebTestProxyBase
* proxy, bool focus);
97
WebTestRunner::
WebTestProxyBase
* proxy,
103
void set_proxy(::WebTestRunner::
WebTestProxyBase
* proxy) { proxy_ = proxy; }
104
::WebTestRunner::
WebTestProxyBase
* proxy() const { return proxy_; }
120
::WebTestRunner::
WebTestProxyBase
* proxy_;
shell_content_renderer_client.h
20
class
WebTestProxyBase
;
59
WebTestRunner::
WebTestProxyBase
* proxy);
shell_content_renderer_client.cc
41
using WebTestRunner::
WebTestProxyBase
;
171
WebTestProxyBase
* proxy) {
webkit_test_runner.cc
87
using WebTestRunner::
WebTestProxyBase
;
140
explicit ProxyToRenderViewVisitor(
WebTestProxyBase
* proxy)
162
WebTestProxyBase
* proxy_;
410
void WebKitTestRunner::setFocus(
WebTestProxyBase
* proxy, bool focus) {
514
WebTestProxyBase
* proxy,
/external/chromium_org/content/test/
layouttest_support.cc
36
using WebTestRunner::
WebTestProxyBase
;
42
base::LazyInstance<base::Callback<void(RenderView*,
WebTestProxyBase
*)> >::Leaky
56
WebTestProxyBase
* GetWebTestProxyBase(RenderViewImpl* render_view) {
60
return static_cast<
WebTestProxyBase
*>(render_view_proxy);
79
const base::Callback<void(RenderView*,
WebTestProxyBase
*)>& callback) {
Completed in 349 milliseconds