OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "content/renderer/input/input_handler_manager.h" | 5 #include "content/renderer/input/input_handler_manager.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/debug/trace_event.h" | 8 #include "base/debug/trace_event.h" |
9 #include "base/message_loop/message_loop_proxy.h" | 9 #include "base/message_loop/message_loop_proxy.h" |
10 #include "cc/input/input_handler.h" | 10 #include "cc/input/input_handler.h" |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
44 base::Unretained(this))); | 44 base::Unretained(this))); |
45 } | 45 } |
46 | 46 |
47 InputHandlerManager::~InputHandlerManager() { | 47 InputHandlerManager::~InputHandlerManager() { |
48 client_->SetBoundHandler(InputHandlerManagerClient::Handler()); | 48 client_->SetBoundHandler(InputHandlerManagerClient::Handler()); |
49 } | 49 } |
50 | 50 |
51 void InputHandlerManager::AddInputHandler( | 51 void InputHandlerManager::AddInputHandler( |
52 int routing_id, | 52 int routing_id, |
53 const base::WeakPtr<cc::InputHandler>& input_handler, | 53 const base::WeakPtr<cc::InputHandler>& input_handler, |
54 const base::WeakPtr<RenderViewImpl>& render_view_impl) { | 54 const base::WeakPtr<RenderViewImpl>& render_view_impl, |
55 RendererScheduler* renderer_scheduler) { | |
55 if (message_loop_proxy_->BelongsToCurrentThread()) { | 56 if (message_loop_proxy_->BelongsToCurrentThread()) { |
56 AddInputHandlerOnCompositorThread(routing_id, | 57 AddInputHandlerOnCompositorThread(routing_id, |
57 base::MessageLoopProxy::current(), | 58 base::MessageLoopProxy::current(), |
58 input_handler, | 59 input_handler, |
59 render_view_impl); | 60 render_view_impl, |
61 renderer_scheduler); | |
60 } else { | 62 } else { |
61 message_loop_proxy_->PostTask( | 63 message_loop_proxy_->PostTask( |
62 FROM_HERE, | 64 FROM_HERE, |
63 base::Bind(&InputHandlerManager::AddInputHandlerOnCompositorThread, | 65 base::Bind(&InputHandlerManager::AddInputHandlerOnCompositorThread, |
64 base::Unretained(this), | 66 base::Unretained(this), |
65 routing_id, | 67 routing_id, |
66 base::MessageLoopProxy::current(), | 68 base::MessageLoopProxy::current(), |
67 input_handler, | 69 input_handler, |
68 render_view_impl)); | 70 render_view_impl, |
71 renderer_scheduler)); | |
Sami
2014/11/06 00:31:20
This should probably be base::Unretained(renderer_
alex clarke (OOO till 29th)
2014/11/06 19:21:45
Acknowledged.
| |
69 } | 72 } |
70 } | 73 } |
71 | 74 |
72 void InputHandlerManager::AddInputHandlerOnCompositorThread( | 75 void InputHandlerManager::AddInputHandlerOnCompositorThread( |
73 int routing_id, | 76 int routing_id, |
74 const scoped_refptr<base::MessageLoopProxy>& main_loop, | 77 const scoped_refptr<base::MessageLoopProxy>& main_loop, |
75 const base::WeakPtr<cc::InputHandler>& input_handler, | 78 const base::WeakPtr<cc::InputHandler>& input_handler, |
76 const base::WeakPtr<RenderViewImpl>& render_view_impl) { | 79 const base::WeakPtr<RenderViewImpl>& render_view_impl, |
80 RendererScheduler* renderer_scheduler) { | |
77 DCHECK(message_loop_proxy_->BelongsToCurrentThread()); | 81 DCHECK(message_loop_proxy_->BelongsToCurrentThread()); |
78 | 82 |
79 // The handler could be gone by this point if the compositor has shut down. | 83 // The handler could be gone by this point if the compositor has shut down. |
80 if (!input_handler) | 84 if (!input_handler) |
81 return; | 85 return; |
82 | 86 |
83 // The same handler may be registered for a route multiple times. | 87 // The same handler may be registered for a route multiple times. |
84 if (input_handlers_.count(routing_id) != 0) | 88 if (input_handlers_.count(routing_id) != 0) |
85 return; | 89 return; |
86 | 90 |
87 TRACE_EVENT1("input", | 91 TRACE_EVENT1("input", |
88 "InputHandlerManager::AddInputHandlerOnCompositorThread", | 92 "InputHandlerManager::AddInputHandlerOnCompositorThread", |
89 "result", "AddingRoute"); | 93 "result", "AddingRoute"); |
90 client_->DidAddInputHandler(routing_id, input_handler.get()); | 94 client_->DidAddInputHandler(routing_id, input_handler.get()); |
91 input_handlers_.add(routing_id, | 95 input_handlers_.add( |
96 routing_id, | |
92 make_scoped_ptr(new InputHandlerWrapper(this, | 97 make_scoped_ptr(new InputHandlerWrapper(this, |
93 routing_id, main_loop, input_handler, render_view_impl))); | 98 routing_id, |
99 main_loop, | |
100 input_handler, | |
101 render_view_impl, | |
102 renderer_scheduler))); | |
94 } | 103 } |
95 | 104 |
96 void InputHandlerManager::RemoveInputHandler(int routing_id) { | 105 void InputHandlerManager::RemoveInputHandler(int routing_id) { |
97 DCHECK(message_loop_proxy_->BelongsToCurrentThread()); | 106 DCHECK(message_loop_proxy_->BelongsToCurrentThread()); |
98 DCHECK(input_handlers_.contains(routing_id)); | 107 DCHECK(input_handlers_.contains(routing_id)); |
99 | 108 |
100 TRACE_EVENT0("input", "InputHandlerManager::RemoveInputHandler"); | 109 TRACE_EVENT0("input", "InputHandlerManager::RemoveInputHandler"); |
101 | 110 |
102 client_->DidRemoveInputHandler(routing_id); | 111 client_->DidRemoveInputHandler(routing_id); |
103 input_handlers_.erase(routing_id); | 112 input_handlers_.erase(routing_id); |
(...skipping 21 matching lines...) Expand all Loading... | |
125 void InputHandlerManager::DidOverscroll(int routing_id, | 134 void InputHandlerManager::DidOverscroll(int routing_id, |
126 const DidOverscrollParams& params) { | 135 const DidOverscrollParams& params) { |
127 client_->DidOverscroll(routing_id, params); | 136 client_->DidOverscroll(routing_id, params); |
128 } | 137 } |
129 | 138 |
130 void InputHandlerManager::DidStopFlinging(int routing_id) { | 139 void InputHandlerManager::DidStopFlinging(int routing_id) { |
131 client_->DidStopFlinging(routing_id); | 140 client_->DidStopFlinging(routing_id); |
132 } | 141 } |
133 | 142 |
134 } // namespace content | 143 } // namespace content |
OLD | NEW |