| 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_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 13 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
| 14 #include "content/common/drag_event_source_info.h" | 14 #include "content/common/drag_event_source_info.h" |
| 15 #include "content/public/browser/renderer_unresponsive_type.h" | 15 #include "content/public/browser/renderer_unresponsive_type.h" |
| 16 #include "content/public/common/drop_data.h" | 16 #include "content/public/common/drop_data.h" |
| 17 #include "third_party/WebKit/public/platform/WebDisplayMode.h" | 17 #include "third_party/WebKit/public/platform/WebDisplayMode.h" |
| 18 #include "third_party/WebKit/public/platform/WebDragOperation.h" | 18 #include "third_party/WebKit/public/platform/WebDragOperation.h" |
| 19 #include "third_party/WebKit/public/web/WebInputEvent.h" | 19 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
| 20 #include "ui/gfx/native_widget_types.h" | 20 #include "ui/gfx/native_widget_types.h" |
| 21 | 21 |
| 22 namespace blink { | 22 namespace blink { |
| 23 class WebMouseWheelEvent; | 23 class WebMouseWheelEvent; |
| 24 class WebGestureEvent; | 24 class WebGestureEvent; |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace gfx { | 27 namespace gfx { |
| 28 class Point; | 28 class Point; |
| 29 class Rect; | 29 class Rect; |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 // fullscreen, and will return nullptr for those cases. | 216 // fullscreen, and will return nullptr for those cases. |
| 217 virtual RenderWidgetHostImpl* GetFullscreenRenderWidgetHost() const; | 217 virtual RenderWidgetHostImpl* GetFullscreenRenderWidgetHost() const; |
| 218 | 218 |
| 219 protected: | 219 protected: |
| 220 virtual ~RenderWidgetHostDelegate() {} | 220 virtual ~RenderWidgetHostDelegate() {} |
| 221 }; | 221 }; |
| 222 | 222 |
| 223 } // namespace content | 223 } // namespace content |
| 224 | 224 |
| 225 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_ | 225 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_ |
| OLD | NEW |