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

1 2

  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.cpp 72 ChromeClient::ChromeClient(WebKitWebView* webView)
80 void ChromeClient::chromeDestroyed()
88 FloatRect ChromeClient::windowRect()
100 void ChromeClient::setWindowRect(const FloatRect& rect)
126 FloatRect ChromeClient::pageRect()
137 float ChromeClient::scaleFactor()
143 void ChromeClient::focus()
148 void ChromeClient::unfocus()
155 Page* ChromeClient::createWindow(Frame* frame, const FrameLoadRequest& frameLoadRequest, const WindowFeatures& coreFe (…)
    [all...]
ChromeClientGtk.h 24 #include "ChromeClient.h"
37 class ChromeClient : public WebCore::ChromeClient {
39 ChromeClient(WebKitWebView*);
  /external/webkit/Source/WebCore/page/brew/
ChromeClientBrew.h 34 #include "ChromeClient.h"
41 // Contains Brew-specific extensions to the ChromeClient. Only put
43 class ChromeClientBrew : public ChromeClient {
  /external/webkit/Source/WebCore/page/chromium/
ChromeClientChromium.h 34 #include "ChromeClient.h"
41 // Contains Chromium-specific extensions to the ChromeClient. Only put
43 class ChromeClientChromium : public ChromeClient {
  /external/webkit/Source/WebCore/page/
Chrome.cpp 24 #include "ChromeClient.h"
58 Chrome::Chrome(Page* page, ChromeClient* client)
119 // FIXME: The unused ScrollView* argument can and should be removed from ChromeClient::scrollRectIntoView.
283 static inline void willRunModalDialog(const Frame* frame, const ChromeClient::DialogType& dialogType, const ChromeClient* client)
291 willRunModalDialog(frame, ChromeClient::AlertDialog, m_client);
303 willRunModalDialog(frame, ChromeClient::ConfirmDialog, m_client);
315 willRunModalDialog(frame, ChromeClient::PromptDialog, m_client);
491 void ChromeClient::dashboardRegionsChanged()
496 void ChromeClient::populateVisitedLinks(
    [all...]
Chrome.h 41 class ChromeClient;
62 Chrome(Page*, ChromeClient*);
65 ChromeClient* client() { return m_client; }
185 ChromeClient* m_client;
ChromeClient.h 75 class ChromeClient {
95 // The Frame pointer provides the ChromeClient with context about which
97 // should not be shown to the user until the ChromeClient of the newly
99 // The FrameLoadRequest parameter is only for ChromeClient to check if the
100 // request could be fulfilled. The ChromeClient should not load the request.
220 // This can be either a synchronous or asynchronous call. The ChromeClient can display UI asking the user for permission
327 virtual ~ChromeClient() { }