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

  /external/webkit/Source/WebKit2/UIProcess/Launcher/
ProcessLauncher.cpp 27 #include "ProcessLauncher.h"
36 DEFINE_STATIC_LOCAL(WorkQueue, processLauncherWorkQueue, ("com.apple.WebKit.ProcessLauncher"));
40 ProcessLauncher::ProcessLauncher(Client* client, const LaunchOptions& launchOptions)
47 processLauncherWorkQueue().scheduleWork(WorkItem::create(this, &ProcessLauncher::launchProcess));
50 void ProcessLauncher::didFinishLaunchingProcess(PlatformProcessIdentifier processIdentifier, CoreIPC::Connection::Identifier identifier)
63 void ProcessLauncher::invalidate()
69 const char* ProcessLauncher::processTypeAsString(ProcessType processType)
82 bool ProcessLauncher::getProcessTypeFromString(const char* string, ProcessType& processType)
ProcessLauncher.h 40 class ProcessLauncher : public ThreadSafeRefCounted<ProcessLauncher> {
46 virtual void didFinishLaunching(ProcessLauncher*, CoreIPC::Connection::Identifier) = 0;
63 static PassRefPtr<ProcessLauncher> create(Client* client, const LaunchOptions& launchOptions)
65 return adoptRef(new ProcessLauncher(client, launchOptions));
77 ProcessLauncher(Client*, const LaunchOptions& launchOptions);
  /external/webkit/Source/WebKit2/UIProcess/Launcher/gtk/
ProcessLauncherGtk.cpp 28 #include "ProcessLauncher.h"
59 void ProcessLauncher::launchProcess()
87 RunLoop::main()->scheduleWork(WorkItem::create(this, &ProcessLauncher::didFinishLaunchingProcess, m_processIdentifier, sockets[1]));
90 void ProcessLauncher::terminateProcess()
98 void ProcessLauncher::platformInvalidate()
  /external/webkit/Source/WebKit2/UIProcess/Launcher/win/
ProcessLauncherWin.cpp 27 #include "ProcessLauncher.h"
48 void ProcessLauncher::launchProcess()
105 RunLoop::main()->scheduleWork(WorkItem::create(this, &ProcessLauncher::didFinishLaunchingProcess, processInformation.hProcess, serverIdentifier));
108 void ProcessLauncher::terminateProcess()
116 void ProcessLauncher::platformInvalidate()
  /external/webkit/Source/WebKit2/UIProcess/Launcher/qt/
ProcessLauncherQt.cpp 28 #include "ProcessLauncher.h"
96 void ProcessLauncher::launchProcess()
147 RunLoop::main()->scheduleWork(WorkItem::create(this, &WebKit::ProcessLauncher::didFinishLaunchingProcess, webProcess, sockets[1]));
150 void ProcessLauncher::terminateProcess()
159 void ProcessLauncher::platformInvalidate()
  /external/webkit/Source/WebKit2/WebProcess/
WebKitMain.cpp 30 #include "ProcessLauncher.h"
42 ProcessLauncher::ProcessType processType;
43 if (!ProcessLauncher::getProcessTypeFromString(commandLine["type"].utf8().data(), processType))
47 case ProcessLauncher::WebProcess:
49 case ProcessLauncher::PluginProcess:
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginProcessProxy.h 33 #include "ProcessLauncher.h"
55 class PluginProcessProxy : CoreIPC::Connection::Client, ProcessLauncher::Client {
89 // ProcessLauncher::Client
90 virtual void didFinishLaunching(ProcessLauncher*, CoreIPC::Connection::Identifier);
128 RefPtr<ProcessLauncher> m_processLauncher;
PluginProcessProxy.cpp 60 ProcessLauncher::LaunchOptions launchOptions;
61 launchOptions.processType = ProcessLauncher::PluginProcess;
67 m_processLauncher = ProcessLauncher::create(this, launchOptions);
179 void PluginProcessProxy::didFinishLaunching(ProcessLauncher*, CoreIPC::Connection::Identifier connectionIdentifier)
  /external/webkit/Source/WebKit2/UIProcess/Launcher/mac/
ProcessLauncherMac.mm 27 #import "ProcessLauncher.h"
190 void ProcessLauncher::launchProcess()
204 if (m_launchOptions.processType == ProcessLauncher::PluginProcess)
265 if (m_launchOptions.processType == ProcessLauncher::PluginProcess) {
296 RunLoop::main()->scheduleWork(WorkItem::create(this, &ProcessLauncher::didFinishLaunchingProcess, processIdentifier, listeningPort));
299 void ProcessLauncher::terminateProcess()
307 void ProcessLauncher::platformInvalidate()
  /external/webkit/Source/WebKit2/UIProcess/
WebProcessProxy.h 32 #include "ProcessLauncher.h"
55 class WebProcessProxy : public RefCounted<WebProcessProxy>, CoreIPC::Connection::Client, ResponsivenessTimer::Client, ProcessLauncher::Client, ThreadLauncher::Client {
143 // ProcessLauncher::Client
144 virtual void didFinishLaunching(ProcessLauncher*, CoreIPC::Connection::Identifier);
159 RefPtr<ProcessLauncher> m_processLauncher;
WebProcessProxy.cpp 100 ProcessLauncher::LaunchOptions launchOptions;
101 launchOptions.processType = ProcessLauncher::WebProcess;
105 launchOptions.architecture = ProcessLauncher::LaunchOptions::MatchCurrentArchitecture;
108 m_processLauncher = ProcessLauncher::create(this, launchOptions);
327 void WebProcessProxy::didFinishLaunching(ProcessLauncher*, CoreIPC::Connection::Identifier connectionIdentifier)

Completed in 174 milliseconds