HomeSort by relevance Sort by last modified time
    Searched defs:WebViewImpl (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/chrome/test/chromedriver/chrome/
web_view_impl.h 33 class WebViewImpl : public WebView {
35 WebViewImpl(const std::string& id,
38 virtual ~WebViewImpl();
web_view_impl.cc 114 WebViewImpl::WebViewImpl(const std::string& id,
129 WebViewImpl::~WebViewImpl() {}
131 std::string WebViewImpl::GetId() {
135 bool WebViewImpl::WasCrashed() {
139 Status WebViewImpl::ConnectIfNecessary() {
143 Status WebViewImpl::HandleReceivedEvents() {
147 Status WebViewImpl::Load(const std::string& url) {
157 Status WebViewImpl::Reload()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebViewImpl.h 118 class WebViewImpl : public WebView
119 , public RefCounted<WebViewImpl>
124 static WebViewImpl* create(WebViewClient*);
317 // WebViewImpl
343 static WebViewImpl* fromPage(WebCore::Page*);
573 friend class WTF::RefCounted<WebViewImpl>;
581 explicit WebViewImpl(WebViewClient*);
582 virtual ~WebViewImpl();
644 void closePendingHelperPlugins(WebCore::Timer<WebViewImpl>*);
685 // WebViewImpl since DragClient::startDrag does not pass the position th
    [all...]
WebViewImpl.cpp 32 #include "WebViewImpl.h"
258 // Pass the WebViewImpl's self-reference to the caller.
259 return WebViewImpl::create(client);
262 WebViewImpl* WebViewImpl::create(WebViewClient* client)
264 // Pass the WebViewImpl's self-reference to the caller.
265 return adoptRef(new WebViewImpl(client)).leakRef();
302 void WebViewImpl::setMainFrame(WebFrame* frame)
310 void WebViewImpl::initializeMainFrame(WebFrameClient* frameClient)
312 // NOTE: Previously, WebViewImpl was responsible for allocating its ow
    [all...]

Completed in 704 milliseconds