Index: content/common/gpu/gpu_channel.cc |
diff --git a/content/common/gpu/gpu_channel.cc b/content/common/gpu/gpu_channel.cc |
index 2768eea2f41d3968ab8aec97ce446c4204ddcfca..017a151de9a149fe7404fe6fa51d819984caad10 100644 |
--- a/content/common/gpu/gpu_channel.cc |
+++ b/content/common/gpu/gpu_channel.cc |
@@ -112,7 +112,7 @@ class GpuChannelMessageFilter : public IPC::MessageFilter { |
} |
if (message.type() == GpuCommandBufferMsg_InsertSyncPoint::ID) { |
- Tuple<bool> retire; |
+ base::Tuple<bool> retire; |
IPC::Message* reply = IPC::SyncMessage::GenerateReply(&message); |
if (!GpuCommandBufferMsg_InsertSyncPoint::ReadSendParam(&message, |
&retire)) { |
@@ -120,7 +120,7 @@ class GpuChannelMessageFilter : public IPC::MessageFilter { |
Send(reply); |
return true; |
} |
- if (!future_sync_points_ && !get<0>(retire)) { |
+ if (!future_sync_points_ && !base::get<0>(retire)) { |
LOG(ERROR) << "Untrusted contexts can't create future sync points"; |
reply->set_reply_error(); |
Send(reply); |
@@ -133,7 +133,7 @@ class GpuChannelMessageFilter : public IPC::MessageFilter { |
FROM_HERE, |
base::Bind(&GpuChannelMessageFilter::InsertSyncPointOnMainThread, |
gpu_channel_, sync_point_manager_, message.routing_id(), |
- get<0>(retire), sync_point)); |
+ base::get<0>(retire), sync_point)); |
handled = true; |
} |