• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebCoreSupport/

Lines Matching defs:message

313 void WebChromeClient::addMessageToConsole(MessageSource, MessageLevel, const String& message, unsigned lineNumber, unsigned /*columnNumber*/, const String& /*sourceID*/)
316 m_page->injectedBundleUIClient().willAddMessageToConsole(m_page, message, lineNumber);
326 bool WebChromeClient::runBeforeUnloadConfirmPanel(const String& message, Frame* frame)
336 if (!WebProcess::shared().parentProcessConnection()->sendSync(Messages::WebPageProxy::RunBeforeUnloadConfirmPanel(message, webFrame->frameID()), Messages::WebPageProxy::RunBeforeUnloadConfirmPanel::Reply(shouldClose), m_page->pageID(), std::chrono::milliseconds::max(), syncSendFlags))
345 // message by actually closing the page. Safari does this, but there is
375 bool WebChromeClient::runJavaScriptConfirm(Frame* frame, const String& message)
381 m_page->injectedBundleUIClient().willRunJavaScriptConfirm(m_page, message, webFrame);
387 if (!WebProcess::shared().parentProcessConnection()->sendSync(Messages::WebPageProxy::RunJavaScriptConfirm(webFrame->frameID(), message), Messages::WebPageProxy::RunJavaScriptConfirm::Reply(result), m_page->pageID(), std::chrono::milliseconds::max(), syncSendFlags))
393 bool WebChromeClient::runJavaScriptPrompt(Frame* frame, const String& message, const String& defaultValue, String& result)
399 m_page->injectedBundleUIClient().willRunJavaScriptPrompt(m_page, message, defaultValue, webFrame);
405 if (!WebProcess::shared().parentProcessConnection()->sendSync(Messages::WebPageProxy::RunJavaScriptPrompt(webFrame->frameID(), message, defaultValue), Messages::WebPageProxy::RunJavaScriptPrompt::Reply(result), m_page->pageID(), std::chrono::milliseconds::max(), syncSendFlags))
626 // comming from the UI process like EndPrinting. When the EndPriting message is received while the printer list is being populated,
959 void WebChromeClient::logDiagnosticMessage(const String& message, const String& description, const String& success)
964 m_page->injectedBundleDiagnosticLoggingClient().logDiagnosticMessage(m_page, message, description, success);