Home
last modified time | relevance | path

Searched refs:m_platformBundle (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/qt/
DInjectedBundleQt.cpp39 m_platformBundle.setFileName(static_cast<QString>(m_path)); in load()
40 if (!m_platformBundle.load()) { in load()
41 … qWarning("Error loading the injected bundle: %s", qPrintable(m_platformBundle.errorString())); in load()
46 … reinterpret_cast<WKBundleInitializeFunctionPtr>(m_platformBundle.resolve("WKBundleInitialize")); in load()
49 … qWarning("Error resolving WKBundleInitialize: %s", qPrintable(m_platformBundle.errorString())); in load()
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/mac/
DInjectedBundleMac.cpp62 m_platformBundle = CFBundleCreate(0, bundleURL.get()); in load()
63 if (!m_platformBundle) { in load()
68 if (!CFBundleLoadExecutable(m_platformBundle)) { in load()
73 …st<WKBundleInitializeFunctionPtr>(CFBundleGetFunctionPointerForName(m_platformBundle, CFSTR("WKBun… in load()
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/win/
DInjectedBundleWin.cpp74m_platformBundle = ::LoadLibraryExW(m_path.charactersWithNullTermination(), 0, LOAD_WITH_ALTERED_S… in load()
75 if (!m_platformBundle) in load()
83 … = reinterpret_cast<WKBundleInitializeFunctionPtr>(::GetProcAddress(m_platformBundle, "WKBundleIni… in load()
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
DInjectedBundle.h135 …PlatformBundle m_platformBundle; // This is leaked right now, since we never unload the bundle/mod… variable
DInjectedBundle.cpp63 , m_platformBundle(0) in InjectedBundle()