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_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "content/browser/frame_host/render_frame_host_manager.h" | 23 #include "content/browser/frame_host/render_frame_host_manager.h" |
24 #include "content/browser/renderer_host/render_view_host_delegate.h" | 24 #include "content/browser/renderer_host/render_view_host_delegate.h" |
25 #include "content/browser/renderer_host/render_widget_host_delegate.h" | 25 #include "content/browser/renderer_host/render_widget_host_delegate.h" |
26 #include "content/common/content_export.h" | 26 #include "content/common/content_export.h" |
27 #include "content/public/browser/color_chooser.h" | 27 #include "content/public/browser/color_chooser.h" |
28 #include "content/public/browser/notification_observer.h" | 28 #include "content/public/browser/notification_observer.h" |
29 #include "content/public/browser/notification_registrar.h" | 29 #include "content/public/browser/notification_registrar.h" |
30 #include "content/public/browser/web_contents.h" | 30 #include "content/public/browser/web_contents.h" |
31 #include "content/public/common/page_transition_types.h" | 31 #include "content/public/common/page_transition_types.h" |
32 #include "content/public/common/renderer_preferences.h" | 32 #include "content/public/common/renderer_preferences.h" |
| 33 #include "content/public/common/resource_type.h" |
33 #include "content/public/common/three_d_api_types.h" | 34 #include "content/public/common/three_d_api_types.h" |
34 #include "net/base/load_states.h" | 35 #include "net/base/load_states.h" |
35 #include "third_party/WebKit/public/web/WebDragOperation.h" | 36 #include "third_party/WebKit/public/web/WebDragOperation.h" |
36 #include "ui/gfx/rect_f.h" | 37 #include "ui/gfx/rect_f.h" |
37 #include "ui/gfx/size.h" | 38 #include "ui/gfx/size.h" |
38 #include "webkit/common/resource_type.h" | |
39 | 39 |
40 struct BrowserPluginHostMsg_ResizeGuest_Params; | 40 struct BrowserPluginHostMsg_ResizeGuest_Params; |
41 struct ViewHostMsg_DateTimeDialogValue_Params; | 41 struct ViewHostMsg_DateTimeDialogValue_Params; |
42 struct ViewMsg_PostMessage_Params; | 42 struct ViewMsg_PostMessage_Params; |
43 | 43 |
44 namespace content { | 44 namespace content { |
45 class BrowserPluginEmbedder; | 45 class BrowserPluginEmbedder; |
46 class BrowserPluginGuest; | 46 class BrowserPluginGuest; |
47 class BrowserPluginGuestManager; | 47 class BrowserPluginGuestManager; |
48 class DateTimeChooserAndroid; | 48 class DateTimeChooserAndroid; |
(...skipping 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1153 | 1153 |
1154 scoped_ptr<ScreenOrientationDispatcherHost> | 1154 scoped_ptr<ScreenOrientationDispatcherHost> |
1155 screen_orientation_dispatcher_host_; | 1155 screen_orientation_dispatcher_host_; |
1156 | 1156 |
1157 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1157 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1158 }; | 1158 }; |
1159 | 1159 |
1160 } // namespace content | 1160 } // namespace content |
1161 | 1161 |
1162 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1162 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |