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

  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/qt/
InjectedBundleQt.cpp 27 #include "InjectedBundle.h"
31 void InjectedBundle::platformInitialize(WKTypeRef)
LayoutTestControllerQt.cpp 30 #include "InjectedBundle.h"
49 InjectedBundle::shared().layoutTestController()->waitToDumpWatchdogTimerFired();
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleClient.h 36 class InjectedBundle;
42 void didCreatePage(InjectedBundle*, WebPage*);
43 void willDestroyPage(InjectedBundle*, WebPage*);
44 void didInitializePageGroup(InjectedBundle*, WebPageGroupProxy*);
45 void didReceiveMessage(InjectedBundle*, const String& messageName, APIObject* messageBody);
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...]
InjectedBundleClient.cpp 33 void InjectedBundleClient::didCreatePage(InjectedBundle* bundle, WebPage* page)
41 void InjectedBundleClient::willDestroyPage(InjectedBundle* bundle, WebPage* page)
49 void InjectedBundleClient::didInitializePageGroup(InjectedBundle* bundle, WebPageGroupProxy* pageGroup)
57 void InjectedBundleClient::didReceiveMessage(InjectedBundle* bundle, const String& messageName, APIObject* messageBody)
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&);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/gtk/
InjectedBundleGtk.cpp 28 #include "InjectedBundle.h"
38 bool InjectedBundle::load(APIObject*)
43 void InjectedBundle::activateMacFontAscentHack()
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
GCController.cpp 29 #include "InjectedBundle.h"
55 WKBundleGarbageCollectJavaScriptObjects(InjectedBundle::shared().bundle());
60 WKBundleGarbageCollectJavaScriptObjectsOnAlternateThreadForDebugging(InjectedBundle::shared().bundle(), waitUntilDone);
65 return WKBundleGetJavaScriptObjectsCount(InjectedBundle::shared().bundle());
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...]
InjectedBundleMain.cpp 28 #include "InjectedBundle.h"
38 WTR::InjectedBundle::shared().initialize(bundle, initializationUserData);
InjectedBundlePage.cpp 29 #include "InjectedBundle.h"
393 if (!InjectedBundle::shared().isTestRunning())
396 if (InjectedBundle::shared().topLoadingFrame())
398 InjectedBundle::shared().setTopLoadingFrame(frame);
407 if (!InjectedBundle::shared().isTestRunning())
410 if (frame != InjectedBundle::shared().topLoadingFrame())
412 InjectedBundle::shared().setTopLoadingFrame(0);
414 if (InjectedBundle::shared().layoutTestController()->waitToDump())
417 InjectedBundle::shared().done();
433 InjectedBundle::shared().os() << "frame '" << name << "' "
    [all...]
LayoutTestController.cpp 29 #include "InjectedBundle.h"
141 InjectedBundle::shared().os() << message << "\n";
142 InjectedBundle::shared().done();
147 if (!InjectedBundle::shared().isTestRunning())
150 if (m_waitToDump && !InjectedBundle::shared().topLoadingFrame())
151 InjectedBundle::shared().page()->dump();
160 WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page());
168 WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page());
174 WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page());
180 WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page())
    [all...]
EventSendingController.cpp 29 #include "InjectedBundle.h"
115 WKBundlePageRef page = InjectedBundle::shared().page()->page();
125 WKBundlePageRef page = InjectedBundle::shared().page()->page();
137 WKBundlePageSimulateMouseMotion(InjectedBundle::shared().page()->page(), m_position, m_time);
162 WKBundlePageSetPageZoomFactor(InjectedBundle::shared().page()->page(), 1);
164 double zoomFactor = WKBundlePageGetTextZoomFactor(InjectedBundle::shared().page()->page());
165 WKBundlePageSetTextZoomFactor(InjectedBundle::shared().page()->page(), zoomFactor * ZoomMultiplierRatio);
171 WKBundlePageSetPageZoomFactor(InjectedBundle::shared().page()->page(), 1);
173 double zoomFactor = WKBundlePageGetTextZoomFactor(InjectedBundle::shared().page()->page());
174 WKBundlePageSetTextZoomFactor(InjectedBundle::shared().page()->page(), zoomFactor / ZoomMultiplierRatio)
    [all...]
InjectedBundle.h 44 class InjectedBundle {
46 static InjectedBundle& shared();
48 // Initialize the InjectedBundle.
76 InjectedBundle();
77 ~InjectedBundle();
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/qt/
InjectedBundleQt.cpp 28 #include "InjectedBundle.h"
37 bool InjectedBundle::load(APIObject* initializationUserData)
57 void InjectedBundle::activateMacFontAscentHack()
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/mac/
InjectedBundleMac.mm 26 #include "InjectedBundle.h"
30 void InjectedBundle::platformInitialize(WKTypeRef)
LayoutTestControllerMac.mm 28 #include "InjectedBundle.h"
47 InjectedBundle::shared().layoutTestController()->waitToDumpWatchdogTimerFired();
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/mac/
InjectedBundleMac.cpp 27 #include "InjectedBundle.h"
39 bool InjectedBundle::load(APIObject* initializationUserData)
43 fprintf(stderr, "InjectedBundle::load failed - Could not consume bundle sandbox extension for [%s].\n", m_path.utf8().data());
52 fprintf(stderr, "InjectedBundle::load failed - Could not create the path string.\n");
58 fprintf(stderr, "InjectedBundle::load failed - Could not create the url from the path string.\n");
64 fprintf(stderr, "InjectedBundle::load failed - Could not create the bundle.\n");
69 fprintf(stderr, "InjectedBundle::load failed - Could not load the executable from the bundle.\n");
75 fprintf(stderr, "InjectedBundle::load failed - Could not find the initialize function in the bundle executable.\n");
83 void InjectedBundle::activateMacFontAscentHack()
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/win/
InjectedBundleWin.cpp 27 #include "InjectedBundle.h"
64 bool InjectedBundle::load(APIObject* initializationUserData)
91 void InjectedBundle::activateMacFontAscentHack()
96 void InjectedBundle::setHostAllowsAnyHTTPSCertificate(const String& host)
103 void InjectedBundle::setClientCertificate(const String& host, const String& certificateSystemStoreName, const WebCertificateInfo* certificateInfo)
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/win/
LayoutTestControllerWin.cpp 29 #include "InjectedBundle.h"
49 InjectedBundle::shared().layoutTestController()->waitToDumpWatchdogTimerFired();
InjectedBundleWin.cpp 27 #include "InjectedBundle.h"
42 void InjectedBundle::platformInitialize(WKTypeRef initializationUserData)
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleAPICast.h 44 class InjectedBundle;
70 WK_ADD_API_MAPPING(WKBundleRef, InjectedBundle)
WKBundle.cpp 30 #include "InjectedBundle.h"
38 return toAPI(InjectedBundle::APIType);
143 InjectedBundle::reportException(context, exception);
  /external/webkit/Source/WebKit2/WebProcess/
WebProcess.h 61 class InjectedBundle;
83 InjectedBundle* injectedBundle() const { return m_injectedBundle.get(); }
187 RefPtr<InjectedBundle> m_injectedBundle;
WebProcess.cpp 31 #include "InjectedBundle.h"
172 m_injectedBundle = InjectedBundle::create(parameters.injectedBundlePath);
176 // Don't keep around the InjectedBundle reference if the load fails.

Completed in 1123 milliseconds