OLD | NEW |
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 // This interface is used by RenderView to talk to the pepper plugin delegate. | 5 // This interface is used by RenderView to talk to the pepper plugin delegate. |
6 #ifndef CONTENT_RENDERER_RENDER_VIEW_PEPPER_HELPER_H | 6 #ifndef CONTENT_RENDERER_RENDER_VIEW_PEPPER_HELPER_H |
7 #define CONTENT_RENDERER_RENDER_VIEW_PEPPER_HELPER_H | 7 #define CONTENT_RENDERER_RENDER_VIEW_PEPPER_HELPER_H |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/platform_file.h" | 14 #include "base/platform_file.h" |
15 #include "base/process.h" | 15 #include "base/process/process.h" |
16 #include "content/common/content_export.h" | 16 #include "content/common/content_export.h" |
17 #include "ui/base/ime/text_input_type.h" | 17 #include "ui/base/ime/text_input_type.h" |
18 | 18 |
19 class TransportDIB; | 19 class TransportDIB; |
20 | 20 |
21 namespace gfx { | 21 namespace gfx { |
22 class Rect; | 22 class Rect; |
23 } | 23 } |
24 | 24 |
25 namespace IPC { | 25 namespace IPC { |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 // Notification that a mouse event has arrived at the render view. | 110 // Notification that a mouse event has arrived at the render view. |
111 virtual void WillHandleMouseEvent() {} | 111 virtual void WillHandleMouseEvent() {} |
112 | 112 |
113 private: | 113 private: |
114 DISALLOW_COPY_AND_ASSIGN(RenderViewPepperHelper); | 114 DISALLOW_COPY_AND_ASSIGN(RenderViewPepperHelper); |
115 }; | 115 }; |
116 | 116 |
117 } // namespace content | 117 } // namespace content |
118 | 118 |
119 #endif // CONTENT_RENDERER_RENDER_VIEW_PEPPER_HELPER_H | 119 #endif // CONTENT_RENDERER_RENDER_VIEW_PEPPER_HELPER_H |
OLD | NEW |