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

Side by Side Diff: content/renderer/gpu/input_event_filter.cc

Issue 16514006: Update includes of message_loop_proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/bind.h" 5 #include "base/bind.h"
6 #include "base/debug/trace_event.h" 6 #include "base/debug/trace_event.h"
7 #include "base/location.h" 7 #include "base/location.h"
8 #include "base/message_loop_proxy.h" 8 #include "base/message_loop/message_loop_proxy.h"
9 #include "content/common/input_messages.h" 9 #include "content/common/input_messages.h"
10 #include "content/renderer/gpu/input_event_filter.h" 10 #include "content/renderer/gpu/input_event_filter.h"
11 11
12 using WebKit::WebInputEvent; 12 using WebKit::WebInputEvent;
13 13
14 namespace content { 14 namespace content {
15 15
16 InputEventFilter::InputEventFilter( 16 InputEventFilter::InputEventFilter(
17 IPC::Listener* main_listener, 17 IPC::Listener* main_listener,
18 const scoped_refptr<base::MessageLoopProxy>& target_loop) 18 const scoped_refptr<base::MessageLoopProxy>& target_loop)
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 141
142 if (!sender_) 142 if (!sender_)
143 return; // Filter was removed. 143 return; // Filter was removed.
144 144
145 sender_->Send( 145 sender_->Send(
146 new InputHostMsg_HandleInputEvent_ACK( 146 new InputHostMsg_HandleInputEvent_ACK(
147 routing_id, event_type, ack_result)); 147 routing_id, event_type, ack_result));
148 } 148 }
149 149
150 } // namespace content 150 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/gpu/compositor_output_surface.cc ('k') | content/renderer/media/audio_input_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698