Searched refs:launchOptions (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/Launcher/
H A DProcessLauncher.cpp40 ProcessLauncher::ProcessLauncher(Client* client, const LaunchOptions& launchOptions) argument
42 , m_launchOptions(launchOptions)
H A DProcessLauncher.h63 static PassRefPtr<ProcessLauncher> create(Client* client, const LaunchOptions& launchOptions) argument
65 return adoptRef(new ProcessLauncher(client, launchOptions));
77 ProcessLauncher(Client*, const LaunchOptions& launchOptions);
/external/webkit/Source/WebKit2/UIProcess/Plugins/
H A DPluginProcessProxy.cpp60 ProcessLauncher::LaunchOptions launchOptions; local
61 launchOptions.processType = ProcessLauncher::PluginProcess;
63 launchOptions.architecture = pluginInfo.pluginArchitecture;
64 launchOptions.executableHeap = PluginProcessProxy::pluginNeedsExecutableHeap(pluginInfo);
67 m_processLauncher = ProcessLauncher::create(this, launchOptions);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebProcessProxy.cpp100 ProcessLauncher::LaunchOptions launchOptions; local
101 launchOptions.processType = ProcessLauncher::WebProcess;
105 launchOptions.architecture = ProcessLauncher::LaunchOptions::MatchCurrentArchitecture;
106 launchOptions.executableHeap = false;
108 m_processLauncher = ProcessLauncher::create(this, launchOptions);

Completed in 284 milliseconds