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_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 #if defined(COMPILER_MSVC) | 69 #if defined(COMPILER_MSVC) |
70 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the | 70 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the |
71 // root. VS warns when we inherit the WebWidgetClient method implementations | 71 // root. VS warns when we inherit the WebWidgetClient method implementations |
72 // from RenderWidget. It's safe to ignore that warning. | 72 // from RenderWidget. It's safe to ignore that warning. |
73 #pragma warning(disable: 4250) | 73 #pragma warning(disable: 4250) |
74 #endif | 74 #endif |
75 | 75 |
76 class PepperDeviceTest; | 76 class PepperDeviceTest; |
77 class SkBitmap; | 77 class SkBitmap; |
78 struct PP_NetAddress_Private; | 78 struct PP_NetAddress_Private; |
79 struct FrameMsg_Navigate_Params; | |
80 struct ViewMsg_New_Params; | 79 struct ViewMsg_New_Params; |
81 struct ViewMsg_PostMessage_Params; | 80 struct ViewMsg_PostMessage_Params; |
82 struct ViewMsg_Resize_Params; | 81 struct ViewMsg_Resize_Params; |
83 struct ViewMsg_StopFinding_Params; | 82 struct ViewMsg_StopFinding_Params; |
84 | 83 |
85 namespace base { | 84 namespace base { |
86 class CommandLine; | 85 class CommandLine; |
87 } | 86 } |
88 | 87 |
89 namespace blink { | 88 namespace blink { |
(...skipping 947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1037 // use the Observer interface to filter IPC messages and receive frame change | 1036 // use the Observer interface to filter IPC messages and receive frame change |
1038 // notifications. | 1037 // notifications. |
1039 // --------------------------------------------------------------------------- | 1038 // --------------------------------------------------------------------------- |
1040 | 1039 |
1041 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1040 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1042 }; | 1041 }; |
1043 | 1042 |
1044 } // namespace content | 1043 } // namespace content |
1045 | 1044 |
1046 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1045 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |