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

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: 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; 130 class DeviceOrientationDispatcher;
Michael van Ouwerkerk 2014/06/06 09:41:53 Nit: should also clean up this then.
mlamouri (slow - plz ping) 2014/06/06 09:50:53 Good catch! ;)
131 class DevToolsAgent; 131 class DevToolsAgent;
132 class DocumentState; 132 class DocumentState;
133 class ExternalPopupMenu; 133 class ExternalPopupMenu;
134 class FaviconHelper; 134 class FaviconHelper;
135 class GeolocationDispatcher; 135 class GeolocationDispatcher;
136 class HistoryController; 136 class HistoryController;
137 class HistoryEntry; 137 class HistoryEntry;
138 class ImageResourceFetcher; 138 class ImageResourceFetcher;
139 class MidiDispatcher; 139 class MidiDispatcher;
140 class MediaStreamDispatcher; 140 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. 1059 // The push messaging dispatcher attached to this view, lazily initialized.
1060 PushMessagingDispatcher* push_messaging_dispatcher_; 1060 PushMessagingDispatcher* push_messaging_dispatcher_;
1061 1061
1062 // The geolocation dispatcher attached to this view, lazily initialized. 1062 // The geolocation dispatcher attached to this view, lazily initialized.
1063 GeolocationDispatcher* geolocation_dispatcher_; 1063 GeolocationDispatcher* geolocation_dispatcher_;
1064 1064
1065 // The speech recognition dispatcher attached to this view, lazily 1065 // The speech recognition dispatcher attached to this view, lazily
1066 // initialized. 1066 // initialized.
1067 SpeechRecognitionDispatcher* speech_recognition_dispatcher_; 1067 SpeechRecognitionDispatcher* speech_recognition_dispatcher_;
1068 1068
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. 1069 // MediaStream dispatcher attached to this view; lazily initialized.
1073 MediaStreamDispatcher* media_stream_dispatcher_; 1070 MediaStreamDispatcher* media_stream_dispatcher_;
1074 1071
1075 // BrowserPluginManager attached to this view; lazily initialized. 1072 // BrowserPluginManager attached to this view; lazily initialized.
1076 scoped_refptr<BrowserPluginManager> browser_plugin_manager_; 1073 scoped_refptr<BrowserPluginManager> browser_plugin_manager_;
1077 1074
1078 // MidiClient attached to this view; lazily initialized. 1075 // MidiClient attached to this view; lazily initialized.
1079 MidiDispatcher* midi_dispatcher_; 1076 MidiDispatcher* midi_dispatcher_;
1080 1077
1081 DevToolsAgent* devtools_agent_; 1078 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 1196 // use the Observer interface to filter IPC messages and receive frame change
1200 // notifications. 1197 // notifications.
1201 // --------------------------------------------------------------------------- 1198 // ---------------------------------------------------------------------------
1202 1199
1203 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1200 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1204 }; 1201 };
1205 1202
1206 } // namespace content 1203 } // namespace content
1207 1204
1208 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1205 #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