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 SpeechRecognitionDispatcher; |
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 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1170 // Holds a reference to the service which provides desktop notifications. | 1170 // Holds a reference to the service which provides desktop notifications. |
1171 NotificationProvider* notification_provider_; | 1171 NotificationProvider* notification_provider_; |
1172 | 1172 |
1173 // The geolocation dispatcher attached to this view, lazily initialized. | 1173 // The geolocation dispatcher attached to this view, lazily initialized. |
1174 GeolocationDispatcher* geolocation_dispatcher_; | 1174 GeolocationDispatcher* geolocation_dispatcher_; |
1175 | 1175 |
1176 // The intents host attached to this view. Not lazily initialized. | 1176 // The intents host attached to this view. Not lazily initialized. |
1177 WebIntentsHost* intents_host_; | 1177 WebIntentsHost* intents_host_; |
1178 | 1178 |
1179 // The speech dispatcher attached to this view, lazily initialized. | 1179 // The speech dispatcher attached to this view, lazily initialized. |
1180 SpeechInputDispatcher* speech_input_dispatcher_; | 1180 SpeechRecognitionDispatcher* speech_recognition_dispatcher_; |
1181 | 1181 |
1182 // Device orientation dispatcher attached to this view; lazily initialized. | 1182 // Device orientation dispatcher attached to this view; lazily initialized. |
1183 DeviceOrientationDispatcher* device_orientation_dispatcher_; | 1183 DeviceOrientationDispatcher* device_orientation_dispatcher_; |
1184 | 1184 |
1185 // MediaStream dispatcher attached to this view; lazily initialized. | 1185 // MediaStream dispatcher attached to this view; lazily initialized. |
1186 MediaStreamDispatcher* media_stream_dispatcher_; | 1186 MediaStreamDispatcher* media_stream_dispatcher_; |
1187 | 1187 |
1188 // MediaStreamImpl attached to this view; lazily initialized. | 1188 // MediaStreamImpl attached to this view; lazily initialized. |
1189 scoped_refptr<MediaStreamImpl> media_stream_impl_; | 1189 scoped_refptr<MediaStreamImpl> media_stream_impl_; |
1190 | 1190 |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1288 // bunch of stuff, you should probably create a helper class and put your | 1288 // bunch of stuff, you should probably create a helper class and put your |
1289 // data and methods on that to avoid bloating RenderView more. You can | 1289 // data and methods on that to avoid bloating RenderView more. You can |
1290 // use the Observer interface to filter IPC messages and receive frame change | 1290 // use the Observer interface to filter IPC messages and receive frame change |
1291 // notifications. | 1291 // notifications. |
1292 // --------------------------------------------------------------------------- | 1292 // --------------------------------------------------------------------------- |
1293 | 1293 |
1294 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1294 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1295 }; | 1295 }; |
1296 | 1296 |
1297 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1297 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |