| 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 <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 #if defined(COMPILER_MSVC) | 58 #if defined(COMPILER_MSVC) |
| 59 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the | 59 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the |
| 60 // root. VS warns when we inherit the WebWidgetClient method implementations | 60 // root. VS warns when we inherit the WebWidgetClient method implementations |
| 61 // from RenderWidget. It's safe to ignore that warning. | 61 // from RenderWidget. It's safe to ignore that warning. |
| 62 #pragma warning(disable: 4250) | 62 #pragma warning(disable: 4250) |
| 63 #endif | 63 #endif |
| 64 | 64 |
| 65 class CommandLine; | 65 class CommandLine; |
| 66 class PepperDeviceTest; | 66 class PepperDeviceTest; |
| 67 class SkBitmap; | 67 class SkBitmap; |
| 68 class WebUIBindings; | |
| 69 struct PP_NetAddress_Private; | 68 struct PP_NetAddress_Private; |
| 70 struct ViewMsg_Navigate_Params; | 69 struct ViewMsg_Navigate_Params; |
| 71 struct ViewMsg_PostMessage_Params; | 70 struct ViewMsg_PostMessage_Params; |
| 72 struct ViewMsg_StopFinding_Params; | 71 struct ViewMsg_StopFinding_Params; |
| 73 struct ViewMsg_SwapOut_Params; | 72 struct ViewMsg_SwapOut_Params; |
| 74 struct WebDropData; | 73 struct WebDropData; |
| 75 | 74 |
| 76 namespace ui { | 75 namespace ui { |
| 77 struct SelectedFileInfo; | 76 struct SelectedFileInfo; |
| 78 } // namespace ui | 77 } // namespace ui |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 class NotificationProvider; | 153 class NotificationProvider; |
| 155 class RenderViewObserver; | 154 class RenderViewObserver; |
| 156 class RenderViewTest; | 155 class RenderViewTest; |
| 157 class RendererAccessibility; | 156 class RendererAccessibility; |
| 158 class RendererPpapiHost; | 157 class RendererPpapiHost; |
| 159 class RendererWebColorChooserImpl; | 158 class RendererWebColorChooserImpl; |
| 160 class RenderWidgetFullscreenPepper; | 159 class RenderWidgetFullscreenPepper; |
| 161 class SpeechRecognitionDispatcher; | 160 class SpeechRecognitionDispatcher; |
| 162 class WebIntentsHost; | 161 class WebIntentsHost; |
| 163 class WebPluginDelegateProxy; | 162 class WebPluginDelegateProxy; |
| 163 class WebUIBindings; |
| 164 struct CustomContextMenuContext; | 164 struct CustomContextMenuContext; |
| 165 struct FileChooserParams; | 165 struct FileChooserParams; |
| 166 | 166 |
| 167 #if defined(OS_ANDROID) | 167 #if defined(OS_ANDROID) |
| 168 class WebMediaPlayerProxyImplAndroid; | 168 class WebMediaPlayerProxyImplAndroid; |
| 169 #endif | 169 #endif |
| 170 | 170 |
| 171 namespace old { | 171 namespace old { |
| 172 class GuestToEmbedderChannel; | 172 class GuestToEmbedderChannel; |
| 173 } | 173 } |
| (...skipping 1416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1590 // use the Observer interface to filter IPC messages and receive frame change | 1590 // use the Observer interface to filter IPC messages and receive frame change |
| 1591 // notifications. | 1591 // notifications. |
| 1592 // --------------------------------------------------------------------------- | 1592 // --------------------------------------------------------------------------- |
| 1593 | 1593 |
| 1594 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1594 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1595 }; | 1595 }; |
| 1596 | 1596 |
| 1597 } // namespace content | 1597 } // namespace content |
| 1598 | 1598 |
| 1599 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1599 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |