HomeSort by relevance Sort by last modified time
    Searched refs:statusbarText (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageUIClient.cpp 45 void InjectedBundlePageUIClient::willSetStatusbarText(WebPage* page, const String& statusbarText)
48 m_client.willSetStatusbarText(toAPI(page), toAPI(statusbarText.impl()), m_client.clientInfo);
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundlePage.h 109 static void willSetStatusbarText(WKBundlePageRef, WKStringRef statusbarText, const void* clientInfo);
114 void willSetStatusbarText(WKStringRef statusbarText);
InjectedBundlePage.cpp 742 void InjectedBundlePage::willSetStatusbarText(WKBundlePageRef page, WKStringRef statusbarText, const void *clientInfo)
744 static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->willSetStatusbarText(statusbarText);
796 void InjectedBundlePage::willSetStatusbarText(WKStringRef statusbarText)
804 InjectedBundle::shared().os() << "UI DELEGATE STATUS CALLBACK: setStatusText:" << statusbarText << "\n";
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProxy.h 117 void setStatusbarText(const String& statusbarText);
PluginProxy.cpp 448 void PluginProxy::setStatusbarText(const String& statusbarText)
450 m_pluginController->setStatusbarText(statusbarText);
PluginView.cpp 952 void PluginView::setStatusbarText(const String& statusbarText)
961 page->chrome()->setStatusbarText(frame(), statusbarText);
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.cpp 325 void WebChromeClient::setStatusbarText(const String& statusbarText)
328 m_page->injectedBundleUIClient().willSetStatusbarText(m_page, statusbarText);
330 m_page->send(Messages::WebPageProxy::SetStatusText(statusbarText));
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.cpp 280 void PluginControllerProxy::setStatusbarText(const String& statusbarText)
282 m_connection->connection()->send(Messages::PluginProxy::SetStatusbarText(statusbarText), m_pluginInstanceID);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapeBrowserFuncs.cpp 338 String statusbarText;
340 statusbarText = "";
342 statusbarText = String::fromUTF8WithLatin1Fallback(message, strlen(message));
345 plugin->setStatusbarText(statusbarText);
NetscapePlugin.cpp 201 void NetscapePlugin::setStatusbarText(const String& statusbarText)
203 m_pluginController->setStatusbarText(statusbarText);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePage.h 170 typedef void (*WKBundlePageWillSetStatusbarTextCallback)(WKBundlePageRef page, WKStringRef statusbarText, const void *clientInfo);

Completed in 1924 milliseconds