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

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

Issue 474913003: WakeLock API: IPC at browser side. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 class MidiDispatcherHost; 56 class MidiDispatcherHost;
57 class PowerSaveBlocker; 57 class PowerSaveBlocker;
58 class RenderViewHost; 58 class RenderViewHost;
59 class RenderViewHostDelegateView; 59 class RenderViewHostDelegateView;
60 class RenderViewHostImpl; 60 class RenderViewHostImpl;
61 class RenderWidgetHostImpl; 61 class RenderWidgetHostImpl;
62 class SavePackage; 62 class SavePackage;
63 class ScreenOrientationDispatcherHost; 63 class ScreenOrientationDispatcherHost;
64 class SiteInstance; 64 class SiteInstance;
65 class TestWebContents; 65 class TestWebContents;
66 class WakeLockDispatcherHost;
66 class WebContentsDelegate; 67 class WebContentsDelegate;
67 class WebContentsImpl; 68 class WebContentsImpl;
68 class WebContentsObserver; 69 class WebContentsObserver;
69 class WebContentsView; 70 class WebContentsView;
70 class WebContentsViewDelegate; 71 class WebContentsViewDelegate;
71 struct AXEventNotificationDetails; 72 struct AXEventNotificationDetails;
72 struct ColorSuggestion; 73 struct ColorSuggestion;
73 struct FaviconURL; 74 struct FaviconURL;
74 struct LoadNotificationDetails; 75 struct LoadNotificationDetails;
75 struct ResourceRedirectDetails; 76 struct ResourceRedirectDetails;
(...skipping 1112 matching lines...) Expand 10 before | Expand all | Expand 10 after
1188 // Whether the last JavaScript dialog shown was suppressed. Used for testing. 1189 // Whether the last JavaScript dialog shown was suppressed. Used for testing.
1189 bool last_dialog_suppressed_; 1190 bool last_dialog_suppressed_;
1190 1191
1191 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; 1192 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_;
1192 1193
1193 scoped_ptr<MidiDispatcherHost> midi_dispatcher_host_; 1194 scoped_ptr<MidiDispatcherHost> midi_dispatcher_host_;
1194 1195
1195 scoped_ptr<ScreenOrientationDispatcherHost> 1196 scoped_ptr<ScreenOrientationDispatcherHost>
1196 screen_orientation_dispatcher_host_; 1197 screen_orientation_dispatcher_host_;
1197 1198
1199 scoped_ptr<WakeLockDispatcherHost>
1200 wake_lock_dispatcher_host_;
1201
1198 // The accessibility mode for all frames. This is queried when each frame 1202 // The accessibility mode for all frames. This is queried when each frame
1199 // is created, and broadcast to all frames when it changes. 1203 // is created, and broadcast to all frames when it changes.
1200 AccessibilityMode accessibility_mode_; 1204 AccessibilityMode accessibility_mode_;
1201 1205
1202 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1206 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1203 }; 1207 };
1204 1208
1205 } // namespace content 1209 } // namespace content
1206 1210
1207 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1211 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698