| Index: content/browser/renderer_host/render_widget_host_view_mac_unittest.mm
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_mac_unittest.mm b/content/browser/renderer_host/render_widget_host_view_mac_unittest.mm
|
| index f522680d582fb26b010df8de85206115d38051e2..772b6c0505e32b2488ea2d4c1b6959e4dd8edce8 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_mac_unittest.mm
|
| +++ b/content/browser/renderer_host/render_widget_host_view_mac_unittest.mm
|
| @@ -847,9 +847,9 @@ TEST_F(RenderWidgetHostViewMacTest, Background) {
|
| set_background = process_host->sink().GetUniqueMessageMatching(
|
| ViewMsg_SetBackgroundOpaque::ID);
|
| ASSERT_TRUE(set_background);
|
| - Tuple<bool> sent_background;
|
| + base::Tuple<bool> sent_background;
|
| ViewMsg_SetBackgroundOpaque::Read(set_background, &sent_background);
|
| - EXPECT_FALSE(get<0>(sent_background));
|
| + EXPECT_FALSE(base::get<0>(sent_background));
|
|
|
| // Try setting it back.
|
| process_host->sink().ClearMessages();
|
| @@ -860,7 +860,7 @@ TEST_F(RenderWidgetHostViewMacTest, Background) {
|
| ViewMsg_SetBackgroundOpaque::ID);
|
| ASSERT_TRUE(set_background);
|
| ViewMsg_SetBackgroundOpaque::Read(set_background, &sent_background);
|
| - EXPECT_TRUE(get<0>(sent_background));
|
| + EXPECT_TRUE(base::get<0>(sent_background));
|
|
|
| host->Shutdown();
|
| }
|
| @@ -885,9 +885,9 @@ class RenderWidgetHostViewMacPinchTest : public RenderWidgetHostViewMacTest {
|
| break;
|
| }
|
| DCHECK(message);
|
| - Tuple<IPC::WebInputEventPointer, ui::LatencyInfo, bool> data;
|
| + base::Tuple<IPC::WebInputEventPointer, ui::LatencyInfo, bool> data;
|
| InputMsg_HandleInputEvent::Read(message, &data);
|
| - IPC::WebInputEventPointer ipc_event = get<0>(data);
|
| + IPC::WebInputEventPointer ipc_event = base::get<0>(data);
|
| const blink::WebGestureEvent* gesture_event =
|
| static_cast<const blink::WebGestureEvent*>(ipc_event);
|
| return gesture_event->data.pinchUpdate.zoomDisabled;
|
|
|