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

  /external/webkit/Source/WebKit2/UIProcess/Launcher/
ProcessLauncher.h 54 struct LaunchOptions {
63 static PassRefPtr<ProcessLauncher> create(Client* client, const LaunchOptions& launchOptions)
65 return adoptRef(new ProcessLauncher(client, launchOptions));
77 ProcessLauncher(Client*, const LaunchOptions& launchOptions);
88 const LaunchOptions m_launchOptions;
ProcessLauncher.cpp 40 ProcessLauncher::ProcessLauncher(Client* client, const LaunchOptions& launchOptions)
42 , m_launchOptions(launchOptions)
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginProcessProxy.cpp 60 ProcessLauncher::LaunchOptions launchOptions;
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/
WebProcessProxy.cpp 100 ProcessLauncher::LaunchOptions launchOptions;
101 launchOptions.processType = ProcessLauncher::WebProcess;
105 launchOptions.architecture = ProcessLauncher::LaunchOptions::MatchCurrentArchitecture;
106 launchOptions.executableHeap = false;
108 m_processLauncher = ProcessLauncher::create(this, launchOptions);

Completed in 193 milliseconds