HomeSort by relevance Sort by last modified time
    Searched refs:WebFrameClient (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/content/test/
mock_webframeclient.h 8 #include "third_party/WebKit/public/web/WebFrameClient.h"
12 class MockWebFrameClient : public blink::WebFrameClient {};
  /external/chromium_org/third_party/WebKit/public/web/
WebHelperPlugin.h 39 class WebFrameClient;
47 virtual void initializeFrame(WebFrameClient*) = 0;
WebFrameClient.h 80 class WebFrameClient {
377 ~WebFrameClient() { }
WebView.h 49 class WebFrameClient;
98 virtual void initializeMainFrame(WebFrameClient*) = 0;
WebFrame.h 62 class WebFrameClient;
100 BLINK_EXPORT static WebFrame* create(WebFrameClient*);
102 // Same as create(WebFrameClient*) except the embedder may explicitly pass
104 // generateEmbedderIdentifier() if constructing the WebFrameClient for this
109 BLINK_EXPORT static WebFrame* create(WebFrameClient*, long long embedderIdentifier);
413 // This method ends up triggering WebFrameClient::willSendRequest.
  /external/chromium_org/third_party/WebKit/Source/web/tests/
FrameTestHelpers.h 41 class WebFrameClient;
58 // WebFrameClient or a WebViewClient are passed in, they must outlive the
60 WebViewImpl* initialize(bool enableJavascript = false, WebFrameClient* = 0, WebViewClient* = 0, void (*updateSettingsFunc)(WebSettings*) = 0);
63 WebViewImpl* initializeAndLoad(const std::string& url, bool enableJavascript = false, WebFrameClient* = 0, WebViewClient* = 0, void (*updateSettingsFunc)(WebSettings*) = 0);
FrameTestHelpers.cpp 36 #include "WebFrameClient.h"
69 WebFrameClient* defaultWebFrameClient()
71 DEFINE_STATIC_LOCAL(WebFrameClient, client, ());
110 WebViewImpl* WebViewHelper::initialize(bool enableJavascript, WebFrameClient* webFrameClient, WebViewClient* webViewClient, void (*updateSettingsFunc)(WebSettings*))
114 if (!webFrameClient)
115 webFrameClient = defaultWebFrameClient();
127 m_mainFrame = WebFrameImpl::create(webFrameClient);
133 WebViewImpl* WebViewHelper::initializeAndLoad(const std::string& url, bool enableJavascript, WebFrameClient* webFrameClient, WebViewClient* webViewClient, void (*updateSettingsFunc)(WebSettings*)
    [all...]
FrameLoaderClientImplTest.cpp 35 #include "WebFrameClient.h"
49 class TestWebFrameClient : public WebFrameClient {
WebPluginContainerTest.cpp 41 #include "WebFrameClient.h"
87 class TestPluginWebFrameClient : public WebFrameClient {
92 return WebFrameClient::createPlugin(frame, params);
CompositedLayerMappingTest.cpp 34 #include "WebFrameClient.h"
69 class MockWebFrameClient : public WebFrameClient {
ProgrammaticScrollTest.cpp 7 #include "WebFrameClient.h"
25 class MockWebFrameClient : public WebFrameClient {
PageSerializerTest.cpp 35 #include "WebFrameClient.h"
60 class TestWebFrameClient : public WebFrameClient {
WebPageSerializerTest.cpp 36 #include "WebFrameClient.h"
55 class TestWebFrameClient : public WebFrameClient {
ChromeClientImplTest.cpp 34 #include "WebFrameClient.h"
74 class TestWebFrameClient : public WebFrameClient {
LinkHighlightTest.cpp 33 #include "WebFrameClient.h"
129 class FakeWebFrameClient : public WebFrameClient {
PopupMenuTest.cpp 40 #include "WebFrameClient.h"
173 class TestWebFrameClient : public WebFrameClient {
  /external/chromium_org/third_party/WebKit/Source/web/
WebEmbeddedWorkerImpl.h 37 #include "WebFrameClient.h"
51 public WebFrameClient {
70 // WebFrameClient overrides, for 'shadow page' loading.
WebHelperPluginImpl.cpp 36 #include "WebFrameClient.h"
112 class HelperPluginFrameClient : public WebFrameClient {
114 HelperPluginFrameClient(WebFrameClient* hostWebFrameClient)
129 WebFrameClient* m_hostWebFrameClient;
176 void WebHelperPluginImpl::initializeFrame(WebFrameClient* client)
WebHelperPluginImpl.h 64 virtual void initializeFrame(WebFrameClient*) OVERRIDE;
WebFrameImpl.h 63 class WebFrameClient;
241 static WebFrameImpl* create(WebFrameClient*);
244 static WebFrameImpl* create(WebFrameClient*, long long embedderIdentifier);
302 WebFrameClient* client() const { return m_client; }
303 void setClient(WebFrameClient* client) { m_client = client; }
337 WebFrameImpl(WebFrameClient*, long long frame_identifier);
438 WebFrameClient* m_client;
WebSharedWorkerImpl.h 37 #include "WebFrameClient.h"
65 , public WebFrameClient
87 // WebFrameClient methods to support resource loading thru the 'shadow page'.
  /external/chromium_org/components/plugins/renderer/
webview_plugin.h 15 #include "third_party/WebKit/public/web/WebFrameClient.h"
34 public blink::WebFrameClient {
40 // This method is called from WebFrameClient::didClearWindowObject.
124 // WebFrameClient methods:
127 // This method is defined in WebPlugin as well as in WebFrameClient, but with
129 // version, so we implement this method and call the default in WebFrameClient
webview_plugin.cc 224 WebFrameClient::didReceiveResponse(frame, identifier, response);
  /external/chromium_org/content/renderer/pepper/
pepper_url_request_unittest.cc 17 #include "third_party/WebKit/public/web/WebFrameClient.h"
29 using blink::WebFrameClient;
47 class TestWebFrameClient : public WebFrameClient {
  /external/chromium_org/content/renderer/
render_frame_impl.h 19 #include "third_party/WebKit/public/web/WebFrameClient.h"
45 NON_EXPORTED_BASE(public blink::WebFrameClient) {
169 // blink::WebFrameClient implementation -------------------------------------

Completed in 7180 milliseconds

1 2