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

Side by Side Diff: content/renderer/gpu/input_handler_manager_client.h

Issue 16255010: Hookup android_webview scroll offset delegation to Java side. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix compile break 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 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_GPU_INPUT_HANDLER_MANAGER_CLIENT_H_ 5 #ifndef CONTENT_RENDERER_GPU_INPUT_HANDLER_MANAGER_CLIENT_H_
6 #define CONTENT_RENDERER_GPU_INPUT_HANDLER_MANAGER_CLIENT_H_ 6 #define CONTENT_RENDERER_GPU_INPUT_HANDLER_MANAGER_CLIENT_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/callback_forward.h" 9 #include "base/callback_forward.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "ui/gfx/vector2d_f.h"
11 12
12 namespace ui { 13 namespace ui {
13 struct LatencyInfo; 14 struct LatencyInfo;
14 } 15 }
15 16
16 namespace cc { 17 namespace cc {
17 class InputHandler; 18 class InputHandler;
18 } 19 }
19 20
20 namespace gfx {
21 class Vector2dF;
22 }
23
24 namespace WebKit { 21 namespace WebKit {
25 class WebInputEvent; 22 class WebInputEvent;
26 } 23 }
27 24
28 namespace content { 25 namespace content {
29 26
30 class CONTENT_EXPORT InputHandlerManagerClient { 27 class CONTENT_EXPORT InputHandlerManagerClient {
31 public: 28 public:
32 virtual ~InputHandlerManagerClient() {} 29 virtual ~InputHandlerManagerClient() {}
33 30
(...skipping 19 matching lines...) Expand all
53 protected: 50 protected:
54 InputHandlerManagerClient() {} 51 InputHandlerManagerClient() {}
55 52
56 private: 53 private:
57 DISALLOW_COPY_AND_ASSIGN(InputHandlerManagerClient); 54 DISALLOW_COPY_AND_ASSIGN(InputHandlerManagerClient);
58 }; 55 };
59 56
60 } // namespace content 57 } // namespace content
61 58
62 #endif // CONTENT_COMMON_GPU_INPUT_HANDLER_MANAGER_CLIENT_H_ 59 #endif // CONTENT_COMMON_GPU_INPUT_HANDLER_MANAGER_CLIENT_H_
OLDNEW
« no previous file with comments | « content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java ('k') | ui/gfx/vector2d_f.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698