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_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_ | 5 #ifndef CONTENT_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_ |
6 #define CONTENT_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_ | 6 #define CONTENT_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
12 #include "content/common/drag_event_source_info.h" | 12 #include "content/common/drag_event_source_info.h" |
13 #include "content/public/common/context_menu_source_type.h" | |
14 #include "third_party/WebKit/public/web/WebDragOperation.h" | 13 #include "third_party/WebKit/public/web/WebDragOperation.h" |
15 | 14 |
16 class SkBitmap; | 15 class SkBitmap; |
17 struct WebDropData; | 16 struct WebDropData; |
18 struct WebMenuItem; | 17 struct WebMenuItem; |
19 | 18 |
20 namespace gfx { | 19 namespace gfx { |
21 class ImageSkia; | 20 class ImageSkia; |
22 class Rect; | 21 class Rect; |
23 class Vector2d; | 22 class Vector2d; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 // retrieved by doing a Shift-Tab. | 69 // retrieved by doing a Shift-Tab. |
71 virtual void TakeFocus(bool reverse) {} | 70 virtual void TakeFocus(bool reverse) {} |
72 | 71 |
73 protected: | 72 protected: |
74 virtual ~RenderViewHostDelegateView() {} | 73 virtual ~RenderViewHostDelegateView() {} |
75 }; | 74 }; |
76 | 75 |
77 } // namespace content | 76 } // namespace content |
78 | 77 |
79 #endif // CONTENT_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_ | 78 #endif // CONTENT_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_ |
OLD | NEW |