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

Unified Diff: content/renderer/input/input_event_filter.cc

Issue 1159553007: Move Tuple to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
Index: content/renderer/input/input_event_filter.cc
diff --git a/content/renderer/input/input_event_filter.cc b/content/renderer/input/input_event_filter.cc
index 62d7c45b49ddc3faf5817cc4d0957e4b264cad9a..4d487bd6bf9a5262b7a7c8408e896f6bab51750d 100644
--- a/content/renderer/input/input_event_filter.cc
+++ b/content/renderer/input/input_event_filter.cc
@@ -145,9 +145,9 @@ void InputEventFilter::ForwardToHandler(const IPC::Message& message) {
InputMsg_HandleInputEvent::Param params;
if (!InputMsg_HandleInputEvent::Read(&message, &params))
return;
- const WebInputEvent* event = get<0>(params);
- ui::LatencyInfo latency_info = get<1>(params);
- bool is_keyboard_shortcut = get<2>(params);
+ const WebInputEvent* event = base::get<0>(params);
+ ui::LatencyInfo latency_info = base::get<1>(params);
+ bool is_keyboard_shortcut = base::get<2>(params);
DCHECK(event);
const bool send_ack = WebInputEventTraits::WillReceiveAckFromRenderer(*event);
« no previous file with comments | « content/renderer/external_popup_menu_browsertest.cc ('k') | content/renderer/input/input_event_filter_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698