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_WEB_CONTENTS_WEB_CONTENTS_VIEW_GUEST_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_GUEST_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_GUEST_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_GUEST_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
| 10 #include "base/macros.h" |
10 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "build/build_config.h" |
11 #include "content/browser/renderer_host/render_view_host_delegate_view.h" | 13 #include "content/browser/renderer_host/render_view_host_delegate_view.h" |
12 #include "content/browser/web_contents/web_contents_view.h" | 14 #include "content/browser/web_contents/web_contents_view.h" |
13 #include "content/common/content_export.h" | 15 #include "content/common/content_export.h" |
14 #include "content/common/drag_event_source_info.h" | 16 #include "content/common/drag_event_source_info.h" |
15 | 17 |
16 namespace content { | 18 namespace content { |
17 | 19 |
18 class WebContents; | 20 class WebContents; |
19 class WebContentsImpl; | 21 class WebContentsImpl; |
20 class BrowserPluginGuest; | 22 class BrowserPluginGuest; |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 | 94 |
93 // Delegate view for guest's platform view. | 95 // Delegate view for guest's platform view. |
94 RenderViewHostDelegateView* platform_view_delegate_view_; | 96 RenderViewHostDelegateView* platform_view_delegate_view_; |
95 | 97 |
96 DISALLOW_COPY_AND_ASSIGN(WebContentsViewGuest); | 98 DISALLOW_COPY_AND_ASSIGN(WebContentsViewGuest); |
97 }; | 99 }; |
98 | 100 |
99 } // namespace content | 101 } // namespace content |
100 | 102 |
101 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_GUEST_H_ | 103 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_GUEST_H_ |
OLD | NEW |