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

Unified Diff: content/common/gpu/gpu_channel_manager_unittest.cc

Issue 1184523003: attachment broker wip (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor comments. Created 5 years, 6 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 | « content/common/gpu/gpu_channel_manager.cc ('k') | content/gpu/gpu_child_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/gpu_channel_manager_unittest.cc
diff --git a/content/common/gpu/gpu_channel_manager_unittest.cc b/content/common/gpu/gpu_channel_manager_unittest.cc
index 2388a2e984bb51fce2dfceacfe29403d74f88a60..163c8bfa3148c50b7795e3b816827ed807edd294 100644
--- a/content/common/gpu/gpu_channel_manager_unittest.cc
+++ b/content/common/gpu/gpu_channel_manager_unittest.cc
@@ -57,7 +57,7 @@ class SimpleWorker : public Listener, public Sender {
SyncChannel* CreateChannel() {
scoped_ptr<SyncChannel> channel = SyncChannel::Create(
channel_name_, mode_, this, ipc_thread_.task_runner().get(), true,
- &shutdown_event_);
+ &shutdown_event_, nullptr);
return channel.release();
}
@@ -112,7 +112,7 @@ class SimpleGpuClient : public IPC::SimpleWorker {
IPC::SimpleWorker::Start();
gpu_channel_manager_.reset(
new GpuChannelManager(&router_, NULL, ipc_thread().task_runner().get(),
- shutdown_event(), channel()));
+ shutdown_event(), channel(), nullptr));
}
void Shutdown() override {
« no previous file with comments | « content/common/gpu/gpu_channel_manager.cc ('k') | content/gpu/gpu_child_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698