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

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

Issue 313233004: Remove RenderViewImpl::device_orientation_dispatcher_ (not used). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove fwd decl Created 6 years, 6 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 class WebHitTestResult; 120 class WebHitTestResult;
121 #endif 121 #endif
122 } 122 }
123 123
124 namespace webkit_glue { 124 namespace webkit_glue {
125 class WebURLResponseExtraDataImpl; 125 class WebURLResponseExtraDataImpl;
126 } 126 }
127 127
128 namespace content { 128 namespace content {
129 class BrowserPluginManager; 129 class BrowserPluginManager;
130 class DeviceOrientationDispatcher;
131 class DevToolsAgent; 130 class DevToolsAgent;
132 class DocumentState; 131 class DocumentState;
133 class ExternalPopupMenu; 132 class ExternalPopupMenu;
134 class FaviconHelper; 133 class FaviconHelper;
135 class GeolocationDispatcher; 134 class GeolocationDispatcher;
136 class HistoryController; 135 class HistoryController;
137 class HistoryEntry; 136 class HistoryEntry;
138 class ImageResourceFetcher; 137 class ImageResourceFetcher;
139 class MidiDispatcher; 138 class MidiDispatcher;
140 class MediaStreamDispatcher; 139 class MediaStreamDispatcher;
(...skipping 918 matching lines...) Expand 10 before | Expand all | Expand 10 after
1059 // The push messaging dispatcher attached to this view, lazily initialized. 1058 // The push messaging dispatcher attached to this view, lazily initialized.
1060 PushMessagingDispatcher* push_messaging_dispatcher_; 1059 PushMessagingDispatcher* push_messaging_dispatcher_;
1061 1060
1062 // The geolocation dispatcher attached to this view, lazily initialized. 1061 // The geolocation dispatcher attached to this view, lazily initialized.
1063 GeolocationDispatcher* geolocation_dispatcher_; 1062 GeolocationDispatcher* geolocation_dispatcher_;
1064 1063
1065 // The speech recognition dispatcher attached to this view, lazily 1064 // The speech recognition dispatcher attached to this view, lazily
1066 // initialized. 1065 // initialized.
1067 SpeechRecognitionDispatcher* speech_recognition_dispatcher_; 1066 SpeechRecognitionDispatcher* speech_recognition_dispatcher_;
1068 1067
1069 // Device orientation dispatcher attached to this view; lazily initialized.
1070 DeviceOrientationDispatcher* device_orientation_dispatcher_;
1071
1072 // MediaStream dispatcher attached to this view; lazily initialized. 1068 // MediaStream dispatcher attached to this view; lazily initialized.
1073 MediaStreamDispatcher* media_stream_dispatcher_; 1069 MediaStreamDispatcher* media_stream_dispatcher_;
1074 1070
1075 // BrowserPluginManager attached to this view; lazily initialized. 1071 // BrowserPluginManager attached to this view; lazily initialized.
1076 scoped_refptr<BrowserPluginManager> browser_plugin_manager_; 1072 scoped_refptr<BrowserPluginManager> browser_plugin_manager_;
1077 1073
1078 // MidiClient attached to this view; lazily initialized. 1074 // MidiClient attached to this view; lazily initialized.
1079 MidiDispatcher* midi_dispatcher_; 1075 MidiDispatcher* midi_dispatcher_;
1080 1076
1081 DevToolsAgent* devtools_agent_; 1077 DevToolsAgent* devtools_agent_;
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
1199 // use the Observer interface to filter IPC messages and receive frame change 1195 // use the Observer interface to filter IPC messages and receive frame change
1200 // notifications. 1196 // notifications.
1201 // --------------------------------------------------------------------------- 1197 // ---------------------------------------------------------------------------
1202 1198
1203 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1199 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1204 }; 1200 };
1205 1201
1206 } // namespace content 1202 } // namespace content
1207 1203
1208 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1204 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698