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

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 336153002: Revert of Properly route screen orientation IPC messages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@screen_lock_view
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
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_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 class GeolocationDispatcherHost; 50 class GeolocationDispatcherHost;
51 class InterstitialPageImpl; 51 class InterstitialPageImpl;
52 class JavaScriptDialogManager; 52 class JavaScriptDialogManager;
53 class MidiDispatcherHost; 53 class MidiDispatcherHost;
54 class PowerSaveBlocker; 54 class PowerSaveBlocker;
55 class RenderViewHost; 55 class RenderViewHost;
56 class RenderViewHostDelegateView; 56 class RenderViewHostDelegateView;
57 class RenderViewHostImpl; 57 class RenderViewHostImpl;
58 class RenderWidgetHostImpl; 58 class RenderWidgetHostImpl;
59 class SavePackage; 59 class SavePackage;
60 class ScreenOrientationDispatcherHost;
61 class SiteInstance; 60 class SiteInstance;
62 class TestWebContents; 61 class TestWebContents;
63 class WebContentsDelegate; 62 class WebContentsDelegate;
64 class WebContentsImpl; 63 class WebContentsImpl;
65 class WebContentsObserver; 64 class WebContentsObserver;
66 class WebContentsView; 65 class WebContentsView;
67 class WebContentsViewDelegate; 66 class WebContentsViewDelegate;
68 struct AXEventNotificationDetails; 67 struct AXEventNotificationDetails;
69 struct ColorSuggestion; 68 struct ColorSuggestion;
70 struct FaviconURL; 69 struct FaviconURL;
(...skipping 1057 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 // Whether touch emulation is enabled in RenderWidgetHost. 1127 // Whether touch emulation is enabled in RenderWidgetHost.
1129 bool touch_emulation_enabled_; 1128 bool touch_emulation_enabled_;
1130 1129
1131 // Whether the last JavaScript dialog shown was suppressed. Used for testing. 1130 // Whether the last JavaScript dialog shown was suppressed. Used for testing.
1132 bool last_dialog_suppressed_; 1131 bool last_dialog_suppressed_;
1133 1132
1134 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; 1133 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_;
1135 1134
1136 scoped_ptr<MidiDispatcherHost> midi_dispatcher_host_; 1135 scoped_ptr<MidiDispatcherHost> midi_dispatcher_host_;
1137 1136
1138 scoped_ptr<ScreenOrientationDispatcherHost>
1139 screen_orientation_dispatcher_host_;
1140
1141 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1137 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1142 }; 1138 };
1143 1139
1144 } // namespace content 1140 } // namespace content
1145 1141
1146 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1142 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698