| 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/platform/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; | |
| 30 class Size; | 29 class Size; |
| 31 } | 30 } |
| 32 | 31 |
| 33 namespace content { | 32 namespace content { |
| 34 | 33 |
| 35 class BrowserAccessibilityManager; | 34 class BrowserAccessibilityManager; |
| 36 class RenderWidgetHostImpl; | 35 class RenderWidgetHostImpl; |
| 37 class RenderWidgetHostInputEventRouter; | 36 class RenderWidgetHostInputEventRouter; |
| 38 class RenderViewHostDelegateView; | 37 class RenderViewHostDelegateView; |
| 39 class TextInputManager; | 38 class TextInputManager; |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 virtual void FocusOwningWebContents( | 235 virtual void FocusOwningWebContents( |
| 237 RenderWidgetHostImpl* render_widget_host) {} | 236 RenderWidgetHostImpl* render_widget_host) {} |
| 238 | 237 |
| 239 protected: | 238 protected: |
| 240 virtual ~RenderWidgetHostDelegate() {} | 239 virtual ~RenderWidgetHostDelegate() {} |
| 241 }; | 240 }; |
| 242 | 241 |
| 243 } // namespace content | 242 } // namespace content |
| 244 | 243 |
| 245 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_ | 244 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_DELEGATE_H_ |
| OLD | NEW |