HomeSort by relevance Sort by last modified time
    Searched defs:ProcessLauncher (Results 1 - 2 of 2) 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);

Completed in 60 milliseconds