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

Side by Side Diff: content/renderer/input/input_handler_wrapper.h

Issue 640803003: scheduler: Remove use of WebSchedulerProxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « content/content_tests.gypi ('k') | content/renderer/input/input_handler_wrapper.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ 5 #ifndef CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_
6 #define CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ 6 #define CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_
7 7
8 #include "base/memory/weak_ptr.h" 8 #include "base/memory/weak_ptr.h"
9 #include "content/renderer/input/input_handler_manager.h" 9 #include "content/renderer/input/input_handler_manager.h"
10 #include "content/renderer/input/input_handler_proxy.h" 10 #include "content/renderer/input/input_handler_proxy.h"
11 #include "content/renderer/input/input_handler_proxy_client.h" 11 #include "content/renderer/input/input_handler_proxy_client.h"
12 #include "third_party/WebKit/public/platform/WebSchedulerProxy.h"
13 12
14 namespace content { 13 namespace content {
15 14
16 // This class lives on the compositor thread. 15 // This class lives on the compositor thread.
17 class InputHandlerWrapper : public InputHandlerProxyClient { 16 class InputHandlerWrapper : public InputHandlerProxyClient {
18 public: 17 public:
19 InputHandlerWrapper(InputHandlerManager* input_handler_manager, 18 InputHandlerWrapper(InputHandlerManager* input_handler_manager,
20 int routing_id, 19 int routing_id,
21 const scoped_refptr<base::MessageLoopProxy>& main_loop, 20 const scoped_refptr<base::MessageLoopProxy>& main_loop,
22 const base::WeakPtr<cc::InputHandler>& input_handler, 21 const base::WeakPtr<cc::InputHandler>& input_handler,
(...skipping 13 matching lines...) Expand all
36 const blink::WebSize& cumulativeScroll) override; 35 const blink::WebSize& cumulativeScroll) override;
37 virtual void DidOverscroll(const DidOverscrollParams& params) override; 36 virtual void DidOverscroll(const DidOverscrollParams& params) override;
38 virtual void DidStopFlinging() override; 37 virtual void DidStopFlinging() override;
39 virtual void DidReceiveInputEvent() override; 38 virtual void DidReceiveInputEvent() override;
40 39
41 private: 40 private:
42 InputHandlerManager* input_handler_manager_; 41 InputHandlerManager* input_handler_manager_;
43 int routing_id_; 42 int routing_id_;
44 InputHandlerProxy input_handler_proxy_; 43 InputHandlerProxy input_handler_proxy_;
45 scoped_refptr<base::MessageLoopProxy> main_loop_; 44 scoped_refptr<base::MessageLoopProxy> main_loop_;
46 blink::WebSchedulerProxy web_scheduler_proxy_;
47 45
48 // Can only be accessed on the main thread. 46 // Can only be accessed on the main thread.
49 base::WeakPtr<RenderViewImpl> render_view_impl_; 47 base::WeakPtr<RenderViewImpl> render_view_impl_;
50 48
51 DISALLOW_COPY_AND_ASSIGN(InputHandlerWrapper); 49 DISALLOW_COPY_AND_ASSIGN(InputHandlerWrapper);
52 }; 50 };
53 51
54 } // namespace content 52 } // namespace content
55 53
56 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_ 54 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_WRAPPER_H_
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | content/renderer/input/input_handler_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698