HomeSort by relevance Sort by last modified time
    Searched full:runbeforeunloadconfirmpanel (Results 1 - 25 of 41) sorted by null

1 2

  /external/webkit/Source/WebKit2/UIProcess/
WebUIClient.cpp 252 return m_client.runBeforeUnloadConfirmPanel;
255 bool WebUIClient::runBeforeUnloadConfirmPanel(WebPageProxy* page, const String& message, WebFrameProxy* frame)
257 if (!m_client.runBeforeUnloadConfirmPanel)
260 return m_client.runBeforeUnloadConfirmPanel(toAPI(page), toAPI(message.impl()), toAPI(frame), m_client.clientInfo);
WebUIClient.h 87 bool runBeforeUnloadConfirmPanel(WebPageProxy*, const String&, WebFrameProxy*);
WebPageProxy.messages.in 53 RunBeforeUnloadConfirmPanel(WTF::String message, uint64_t frameID) -> (bool shouldClose)
  /external/webkit/Tools/WebKitTestRunner/
TestController.cpp 104 static bool runBeforeUnloadConfirmPanel(WKPageRef page, WKStringRef message, WKFrameRef frame, const void *clientInfo)
162 runBeforeUnloadConfirmPanel,
299 runBeforeUnloadConfirmPanel,
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
ChromeClientEfl.h 85 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame);
ChromeClientEfl.cpp 265 bool ChromeClientEfl::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
  /external/webkit/Source/WebKit/wx/WebKitSupport/
ChromeClientWx.h 90 virtual bool runBeforeUnloadConfirmPanel(const String& message,
ChromeClientWx.cpp 257 bool ChromeClientWx::runBeforeUnloadConfirmPanel(const String& string,
  /external/webkit/Tools/MiniBrowser/win/
BrowserView.cpp 120 0, /* runBeforeUnloadConfirmPanel */
  /external/webkit/Source/WebCore/page/
Chrome.h 127 bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame);
Chrome.cpp 269 bool Chrome::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
275 return m_client->runBeforeUnloadConfirmPanel(message, frame);
ChromeClient.h 124 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame) = 0;
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.h 102 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.h 85 virtual bool runBeforeUnloadConfirmPanel(const WTF::String& message, WebCore::Frame* frame);
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.h 94 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame* frame);
ChromeClientHaiku.cpp 216 bool ChromeClientHaiku::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
ChromeClientQt.h 102 virtual bool runBeforeUnloadConfirmPanel(const String& message, Frame*);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
ChromeClientWinCE.cpp 186 bool ChromeClientWinCE::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
ChromeClientWinCE.h 83 virtual bool runBeforeUnloadConfirmPanel(const WTF::String& message, WebCore::Frame* frame);
  /external/webkit/Tools/MiniBrowser/mac/
BrowserWindowController.m 514 static bool runBeforeUnloadConfirmPanel(WKPageRef page, WKStringRef message, WKFrameRef frame, const void* clientInfo)
641 runBeforeUnloadConfirmPanel,
  /external/webkit/Source/WebKit/chromium/src/
ChromeClientImpl.h 94 virtual bool runBeforeUnloadConfirmPanel(
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebChromeClient.h 82 virtual bool runBeforeUnloadConfirmPanel(const WTF::String& message, WebCore::Frame* frame);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebChromeClient.h 86 virtual bool runBeforeUnloadConfirmPanel(const WTF::String& message, WebCore::Frame* frame);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.h 98 virtual bool runBeforeUnloadConfirmPanel(const String& message, WebCore::Frame* frame);
WebChromeClient.cpp 258 bool WebChromeClient::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
263 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::RunBeforeUnloadConfirmPanel(message, webFrame->frameID()), Messages::WebPageProxy::RunBeforeUnloadConfirmPanel::Reply(shouldClose), m_page->pageID()))

Completed in 260 milliseconds

1 2