HomeSort by relevance Sort by last modified time
    Searched defs:InjectedBundle (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundle.h 67 class InjectedBundle : public APIObject {
71 static PassRefPtr<InjectedBundle> create(const String& path)
73 return adoptRef(new InjectedBundle(path));
75 ~InjectedBundle();
130 InjectedBundle(const String&);
InjectedBundle.cpp 27 #include "InjectedBundle.h"
61 InjectedBundle::InjectedBundle(const String& path)
68 InjectedBundle::~InjectedBundle()
72 void InjectedBundle::initializeClient(WKBundleClient* client)
77 void InjectedBundle::postMessage(const String& messageName, APIObject* messageBody)
82 void InjectedBundle::postSynchronousMessage(const String& messageName, APIObject* messageBody, RefPtr<APIObject>& returnData)
95 void InjectedBundle::setShouldTrackVisitedLinks(bool shouldTrackVisitedLinks)
100 void InjectedBundle::removeAllVisitedLinks(
    [all...]
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundle.cpp 27 #include "InjectedBundle.h"
43 InjectedBundle& InjectedBundle::shared()
45 static InjectedBundle& shared = *new InjectedBundle;
49 InjectedBundle::InjectedBundle()
57 void InjectedBundle::didCreatePage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
59 static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->didCreatePage(page);
62 void InjectedBundle::willDestroyPage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo
    [all...]
InjectedBundle.h 44 class InjectedBundle {
46 static InjectedBundle& shared();
48 // Initialize the InjectedBundle.
76 InjectedBundle();
77 ~InjectedBundle();

Completed in 441 milliseconds