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_VIEW_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "content/public/common/javascript_message_type.h" | 21 #include "content/public/common/javascript_message_type.h" |
22 #include "content/public/common/window_container_type.h" | 22 #include "content/public/common/window_container_type.h" |
23 #include "net/base/load_states.h" | 23 #include "net/base/load_states.h" |
24 #include "third_party/skia/include/core/SkColor.h" | 24 #include "third_party/skia/include/core/SkColor.h" |
25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" | 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" |
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" | 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" |
27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" | 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
28 #include "webkit/glue/window_open_disposition.h" | 28 #include "webkit/glue/window_open_disposition.h" |
29 | 29 |
30 class ChildProcessSecurityPolicyImpl; | 30 class ChildProcessSecurityPolicyImpl; |
31 class SessionStorageNamespaceImpl; | |
32 class SkBitmap; | 31 class SkBitmap; |
33 class ViewMsg_Navigate; | 32 class ViewMsg_Navigate; |
34 struct AccessibilityHostMsg_NotificationParams; | 33 struct AccessibilityHostMsg_NotificationParams; |
35 struct MediaPlayerAction; | 34 struct MediaPlayerAction; |
36 struct ViewHostMsg_CreateWindow_Params; | 35 struct ViewHostMsg_CreateWindow_Params; |
37 struct ViewHostMsg_DidFailProvisionalLoadWithError_Params; | 36 struct ViewHostMsg_DidFailProvisionalLoadWithError_Params; |
38 struct ViewHostMsg_ShowPopup_Params; | 37 struct ViewHostMsg_ShowPopup_Params; |
39 struct ViewMsg_Navigate_Params; | 38 struct ViewMsg_Navigate_Params; |
40 struct ViewMsg_PostMessage_Params; | 39 struct ViewMsg_PostMessage_Params; |
41 struct ViewMsg_StopFinding_Params; | 40 struct ViewMsg_StopFinding_Params; |
42 | 41 |
43 namespace base { | 42 namespace base { |
44 class ListValue; | 43 class ListValue; |
45 } | 44 } |
46 | 45 |
47 namespace ui { | 46 namespace ui { |
48 class Range; | 47 class Range; |
49 struct SelectedFileInfo; | 48 struct SelectedFileInfo; |
50 } | 49 } |
51 | 50 |
52 namespace content { | 51 namespace content { |
53 | 52 |
54 #if defined(OS_ANDROID) | 53 #if defined(OS_ANDROID) |
55 class MediaPlayerManagerAndroid; | 54 class MediaPlayerManagerAndroid; |
56 #endif | 55 #endif |
57 class PowerSaveBlocker; | 56 class PowerSaveBlocker; |
58 class RenderViewHostObserver; | 57 class RenderViewHostObserver; |
59 class RenderWidgetHostDelegate; | 58 class RenderWidgetHostDelegate; |
60 class SessionStorageNamespace; | 59 class SessionStorageNamespace; |
| 60 class SessionStorageNamespaceImpl; |
61 class TestRenderViewHost; | 61 class TestRenderViewHost; |
62 struct ContextMenuParams; | 62 struct ContextMenuParams; |
63 struct FileChooserParams; | 63 struct FileChooserParams; |
64 struct Referrer; | 64 struct Referrer; |
65 struct ShowDesktopNotificationHostMsgParams; | 65 struct ShowDesktopNotificationHostMsgParams; |
66 | 66 |
67 // NotificationObserver used to listen for EXECUTE_JAVASCRIPT_RESULT | 67 // NotificationObserver used to listen for EXECUTE_JAVASCRIPT_RESULT |
68 // notifications. | 68 // notifications. |
69 class ExecuteNotificationObserver : public NotificationObserver { | 69 class ExecuteNotificationObserver : public NotificationObserver { |
70 public: | 70 public: |
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
704 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 704 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
705 }; | 705 }; |
706 | 706 |
707 #if defined(COMPILER_MSVC) | 707 #if defined(COMPILER_MSVC) |
708 #pragma warning(pop) | 708 #pragma warning(pop) |
709 #endif | 709 #endif |
710 | 710 |
711 } // namespace content | 711 } // namespace content |
712 | 712 |
713 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 713 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |