Searched defs:InjectedBundle (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundle.h67 class InjectedBundle : public APIObject { class in namespace:WebKit
71 static PassRefPtr<InjectedBundle> create(const String& path)
73 return adoptRef(new InjectedBundle(path));
75 ~InjectedBundle();
130 InjectedBundle(const String&);
H A DInjectedBundle.cpp27 #include "InjectedBundle.h"
61 InjectedBundle::InjectedBundle(const String& path) function in class:WebKit::InjectedBundle
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
[all...]
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DInjectedBundle.cpp27 #include "InjectedBundle.h"
43 InjectedBundle& InjectedBundle::shared()
45 static InjectedBundle& shared = *new InjectedBundle;
49 InjectedBundle::InjectedBundle() function in class:WTR::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
[all...]
H A DInjectedBundle.h44 class InjectedBundle { class in namespace:WTR
46 static InjectedBundle& shared();
48 // Initialize the InjectedBundle.
76 InjectedBundle();
77 ~InjectedBundle();

Completed in 59 milliseconds