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

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

Issue 1767673002: Revert of Decouple Media Service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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.cc ('k') | content/common/gpu/gpu_command_buffer_stub.h » ('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 2938b8d304fb74cd013b9b7ffb9fd48332ee5f71..b7dc1a7601aff6a829582ac7e54eae420c9b00ad 100644
--- a/content/common/gpu/gpu_channel_manager_unittest.cc
+++ b/content/common/gpu/gpu_channel_manager_unittest.cc
@@ -36,13 +36,12 @@
params.preempts = false;
params.allow_view_command_buffers = false;
params.allow_real_time_streams = false;
- IPC::ChannelHandle channel_handle =
- channel_manager()->EstablishChannel(params);
- EXPECT_NE("", channel_handle.name);
+ IPC::ChannelHandle handle = channel_manager()->EstablishChannel(params);
+ EXPECT_NE("", handle.name);
GpuChannel* channel = channel_manager()->LookupChannel(kClientId);
ASSERT_TRUE(channel);
- EXPECT_EQ(channel_handle.name, channel->channel_id());
+ EXPECT_EQ(handle.name, channel->channel_id());
}
TEST_F(GpuChannelManagerTest, SecureValueStateForwarding) {
« no previous file with comments | « content/common/gpu/gpu_channel.cc ('k') | content/common/gpu/gpu_command_buffer_stub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698