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 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_H_ |
6 #define CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_H_ | 6 #define CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
12 #include "content/public/browser/native_web_keyboard_event.h" | 12 #include "content/public/browser/native_web_keyboard_event.h" |
13 #include "content/public/browser/readback_types.h" | 13 #include "content/public/browser/readback_types.h" |
14 #include "content/public/common/drop_data.h" | 14 #include "content/public/common/drop_data.h" |
15 #include "ipc/ipc_channel.h" | 15 #include "ipc/ipc_channel.h" |
16 #include "ipc/ipc_sender.h" | 16 #include "ipc/ipc_sender.h" |
17 #include "third_party/WebKit/public/platform/WebDragOperation.h" | 17 #include "third_party/WebKit/public/platform/WebDragOperation.h" |
18 #include "third_party/WebKit/public/web/WebInputEvent.h" | 18 #include "third_party/WebKit/public/platform/WebGestureEvent.h" |
| 19 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
19 #include "third_party/WebKit/public/web/WebTextDirection.h" | 20 #include "third_party/WebKit/public/web/WebTextDirection.h" |
20 #include "third_party/skia/include/core/SkImageInfo.h" | 21 #include "third_party/skia/include/core/SkImageInfo.h" |
21 #include "ui/gfx/geometry/size.h" | 22 #include "ui/gfx/geometry/size.h" |
22 #include "ui/surface/transport_dib.h" | 23 #include "ui/surface/transport_dib.h" |
23 | 24 |
24 namespace gfx { | 25 namespace gfx { |
25 class Rect; | 26 class Rect; |
26 } | 27 } |
27 | 28 |
28 namespace blink { | 29 namespace blink { |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 const gfx::Point& screen_pt, | 285 const gfx::Point& screen_pt, |
285 int key_modifiers) {} | 286 int key_modifiers) {} |
286 | 287 |
287 // Filters drop data before it is passed to RenderWidgetHost. | 288 // Filters drop data before it is passed to RenderWidgetHost. |
288 virtual void FilterDropData(DropData* drop_data) {} | 289 virtual void FilterDropData(DropData* drop_data) {} |
289 }; | 290 }; |
290 | 291 |
291 } // namespace content | 292 } // namespace content |
292 | 293 |
293 #endif // CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_H_ | 294 #endif // CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_H_ |
OLD | NEW |