Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: content/renderer/render_view_impl.h

Issue 8934011: Rename IntentsHost -> WebIntentsDispatcher and IntentsDispatcher -> WebIntentsHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 // root. VS warns when we inherit the WebWidgetClient method implementations 55 // root. VS warns when we inherit the WebWidgetClient method implementations
56 // from RenderWidget. It's safe to ignore that warning. 56 // from RenderWidget. It's safe to ignore that warning.
57 #pragma warning(disable: 4250) 57 #pragma warning(disable: 4250)
58 #endif 58 #endif
59 59
60 class DeviceOrientationDispatcher; 60 class DeviceOrientationDispatcher;
61 class DevToolsAgent; 61 class DevToolsAgent;
62 class ExternalPopupMenu; 62 class ExternalPopupMenu;
63 class GeolocationDispatcher; 63 class GeolocationDispatcher;
64 class GURL; 64 class GURL;
65 class IntentsDispatcher;
66 class JavaBridgeDispatcher; 65 class JavaBridgeDispatcher;
67 class LoadProgressTracker; 66 class LoadProgressTracker;
68 class MediaStreamImpl; 67 class MediaStreamImpl;
69 class NotificationProvider; 68 class NotificationProvider;
70 class PepperDeviceTest; 69 class PepperDeviceTest;
71 struct PP_NetAddress_Private; 70 struct PP_NetAddress_Private;
72 class RenderWidgetFullscreenPepper; 71 class RenderWidgetFullscreenPepper;
73 class RendererAccessibility; 72 class RendererAccessibility;
74 class SkBitmap; 73 class SkBitmap;
75 class SpeechInputDispatcher; 74 class SpeechInputDispatcher;
76 struct ViewMsg_Navigate_Params; 75 struct ViewMsg_Navigate_Params;
77 struct ViewMsg_StopFinding_Params; 76 struct ViewMsg_StopFinding_Params;
78 struct ViewMsg_SwapOut_Params; 77 struct ViewMsg_SwapOut_Params;
79 struct WebDropData; 78 struct WebDropData;
79 class WebIntentsHost;
80 class WebPluginDelegateProxy; 80 class WebPluginDelegateProxy;
81 class WebUIBindings; 81 class WebUIBindings;
82 82
83 namespace content { 83 namespace content {
84 class DocumentState; 84 class DocumentState;
85 class P2PSocketDispatcher; 85 class P2PSocketDispatcher;
86 class RenderViewObserver; 86 class RenderViewObserver;
87 class RenderViewTest; 87 class RenderViewTest;
88 struct FileChooserParams; 88 struct FileChooserParams;
89 } // namespace content 89 } // namespace content
(...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after
1118 // The next group of objects all implement RenderViewObserver, so are deleted 1118 // The next group of objects all implement RenderViewObserver, so are deleted
1119 // along with the RenderView automatically. This is why we just store 1119 // along with the RenderView automatically. This is why we just store
1120 // weak references. 1120 // weak references.
1121 1121
1122 // Holds a reference to the service which provides desktop notifications. 1122 // Holds a reference to the service which provides desktop notifications.
1123 NotificationProvider* notification_provider_; 1123 NotificationProvider* notification_provider_;
1124 1124
1125 // The geolocation dispatcher attached to this view, lazily initialized. 1125 // The geolocation dispatcher attached to this view, lazily initialized.
1126 GeolocationDispatcher* geolocation_dispatcher_; 1126 GeolocationDispatcher* geolocation_dispatcher_;
1127 1127
1128 // The intents dispatcher attached to this view. Not lazily initialized. 1128 // The intents host attached to this view. Not lazily initialized.
1129 IntentsDispatcher* intents_dispatcher_; 1129 WebIntentsHost* intents_host_;
1130 1130
1131 // The speech dispatcher attached to this view, lazily initialized. 1131 // The speech dispatcher attached to this view, lazily initialized.
1132 SpeechInputDispatcher* speech_input_dispatcher_; 1132 SpeechInputDispatcher* speech_input_dispatcher_;
1133 1133
1134 // Device orientation dispatcher attached to this view; lazily initialized. 1134 // Device orientation dispatcher attached to this view; lazily initialized.
1135 DeviceOrientationDispatcher* device_orientation_dispatcher_; 1135 DeviceOrientationDispatcher* device_orientation_dispatcher_;
1136 1136
1137 // MediaStreamImpl attached to this view; lazily initialized. 1137 // MediaStreamImpl attached to this view; lazily initialized.
1138 scoped_refptr<MediaStreamImpl> media_stream_impl_; 1138 scoped_refptr<MediaStreamImpl> media_stream_impl_;
1139 1139
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
1227 // bunch of stuff, you should probably create a helper class and put your 1227 // bunch of stuff, you should probably create a helper class and put your
1228 // data and methods on that to avoid bloating RenderView more. You can 1228 // data and methods on that to avoid bloating RenderView more. You can
1229 // use the Observer interface to filter IPC messages and receive frame change 1229 // use the Observer interface to filter IPC messages and receive frame change
1230 // notifications. 1230 // notifications.
1231 // --------------------------------------------------------------------------- 1231 // ---------------------------------------------------------------------------
1232 1232
1233 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1233 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1234 }; 1234 };
1235 1235
1236 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1236 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698