Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Unified Diff: content/gpu/gpu_main.cc

Issue 2342003003: [WIP] Mus: Pass the mojo connector to OzonePlatform::InitializeForGPU (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gpu/ipc/service/gpu_init.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/gpu/gpu_main.cc
diff --git a/content/gpu/gpu_main.cc b/content/gpu/gpu_main.cc
index 37139fb208810d5cac4fc32d1a796f67cea34065..5905b2ff612a164661e5f8fd723066664f969d08 100644
--- a/content/gpu/gpu_main.cc
+++ b/content/gpu/gpu_main.cc
@@ -261,7 +261,9 @@ int GpuMain(const MainFunctionParams& parameters) {
// exits early, the browser process will never detect it. For this reason we
// defer tearing down the GPU process until receiving the GpuMsg_Initialize
// message from the browser.
- const bool init_success = gpu_init.InitializeAndStartSandbox(command_line);
+ // TODO(fwang): Must plumb the shell::Connector* to here.
+ const bool init_success =
+ gpu_init.InitializeAndStartSandbox(command_line, nullptr);
const bool dead_on_arrival = !init_success;
logging::SetLogMessageHandler(NULL);
« no previous file with comments | « no previous file | gpu/ipc/service/gpu_init.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698