| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 class LoadProgressTracker; | 69 class LoadProgressTracker; |
| 70 class MediaStreamDispatcher; | 70 class MediaStreamDispatcher; |
| 71 class MediaStreamImpl; | 71 class MediaStreamImpl; |
| 72 class MouseLockDispatcher; | 72 class MouseLockDispatcher; |
| 73 class NotificationProvider; | 73 class NotificationProvider; |
| 74 class PepperDeviceTest; | 74 class PepperDeviceTest; |
| 75 struct PP_NetAddress_Private; | 75 struct PP_NetAddress_Private; |
| 76 class RenderWidgetFullscreenPepper; | 76 class RenderWidgetFullscreenPepper; |
| 77 class RendererAccessibility; | 77 class RendererAccessibility; |
| 78 class SkBitmap; | 78 class SkBitmap; |
| 79 class SpeechInputDispatcher; | 79 class InputTagSpeechDispatcher; |
| 80 struct ViewMsg_Navigate_Params; | 80 struct ViewMsg_Navigate_Params; |
| 81 struct ViewMsg_StopFinding_Params; | 81 struct ViewMsg_StopFinding_Params; |
| 82 struct ViewMsg_SwapOut_Params; | 82 struct ViewMsg_SwapOut_Params; |
| 83 struct WebDropData; | 83 struct WebDropData; |
| 84 class WebIntentsHost; | 84 class WebIntentsHost; |
| 85 class WebPluginDelegateProxy; | 85 class WebPluginDelegateProxy; |
| 86 class WebUIBindings; | 86 class WebUIBindings; |
| 87 | 87 |
| 88 namespace content { | 88 namespace content { |
| 89 class DocumentState; | 89 class DocumentState; |
| (...skipping 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1172 // Holds a reference to the service which provides desktop notifications. | 1172 // Holds a reference to the service which provides desktop notifications. |
| 1173 NotificationProvider* notification_provider_; | 1173 NotificationProvider* notification_provider_; |
| 1174 | 1174 |
| 1175 // The geolocation dispatcher attached to this view, lazily initialized. | 1175 // The geolocation dispatcher attached to this view, lazily initialized. |
| 1176 GeolocationDispatcher* geolocation_dispatcher_; | 1176 GeolocationDispatcher* geolocation_dispatcher_; |
| 1177 | 1177 |
| 1178 // The intents host attached to this view. Not lazily initialized. | 1178 // The intents host attached to this view. Not lazily initialized. |
| 1179 WebIntentsHost* intents_host_; | 1179 WebIntentsHost* intents_host_; |
| 1180 | 1180 |
| 1181 // The speech dispatcher attached to this view, lazily initialized. | 1181 // The speech dispatcher attached to this view, lazily initialized. |
| 1182 SpeechInputDispatcher* speech_input_dispatcher_; | 1182 InputTagSpeechDispatcher* input_tag_speech_dispatcher_; |
| 1183 | 1183 |
| 1184 // Device orientation dispatcher attached to this view; lazily initialized. | 1184 // Device orientation dispatcher attached to this view; lazily initialized. |
| 1185 DeviceOrientationDispatcher* device_orientation_dispatcher_; | 1185 DeviceOrientationDispatcher* device_orientation_dispatcher_; |
| 1186 | 1186 |
| 1187 // MediaStream dispatcher attached to this view; lazily initialized. | 1187 // MediaStream dispatcher attached to this view; lazily initialized. |
| 1188 MediaStreamDispatcher* media_stream_dispatcher_; | 1188 MediaStreamDispatcher* media_stream_dispatcher_; |
| 1189 | 1189 |
| 1190 // MediaStreamImpl attached to this view; lazily initialized. | 1190 // MediaStreamImpl attached to this view; lazily initialized. |
| 1191 scoped_refptr<MediaStreamImpl> media_stream_impl_; | 1191 scoped_refptr<MediaStreamImpl> media_stream_impl_; |
| 1192 | 1192 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1290 // bunch of stuff, you should probably create a helper class and put your | 1290 // bunch of stuff, you should probably create a helper class and put your |
| 1291 // data and methods on that to avoid bloating RenderView more. You can | 1291 // data and methods on that to avoid bloating RenderView more. You can |
| 1292 // use the Observer interface to filter IPC messages and receive frame change | 1292 // use the Observer interface to filter IPC messages and receive frame change |
| 1293 // notifications. | 1293 // notifications. |
| 1294 // --------------------------------------------------------------------------- | 1294 // --------------------------------------------------------------------------- |
| 1295 | 1295 |
| 1296 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1296 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1297 }; | 1297 }; |
| 1298 | 1298 |
| 1299 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1299 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |