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

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

Issue 335993002: Convert MIDI permission requests to use WebContents in preparation for switching the code to using … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | Annotate | Revision Log
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 namespace content { 44 namespace content {
45 class BrowserPluginEmbedder; 45 class BrowserPluginEmbedder;
46 class BrowserPluginGuest; 46 class BrowserPluginGuest;
47 class BrowserPluginGuestManager; 47 class BrowserPluginGuestManager;
48 class DateTimeChooserAndroid; 48 class DateTimeChooserAndroid;
49 class DownloadItem; 49 class DownloadItem;
50 class GeolocationDispatcherHost; 50 class GeolocationDispatcherHost;
51 class InterstitialPageImpl; 51 class InterstitialPageImpl;
52 class JavaScriptDialogManager; 52 class JavaScriptDialogManager;
53 class MidiDispatcherHost;
53 class PowerSaveBlocker; 54 class PowerSaveBlocker;
54 class RenderViewHost; 55 class RenderViewHost;
55 class RenderViewHostDelegateView; 56 class RenderViewHostDelegateView;
56 class RenderViewHostImpl; 57 class RenderViewHostImpl;
57 class RenderWidgetHostImpl; 58 class RenderWidgetHostImpl;
58 class SavePackage; 59 class SavePackage;
59 class SiteInstance; 60 class SiteInstance;
60 class TestWebContents; 61 class TestWebContents;
61 class WebContentsDelegate; 62 class WebContentsDelegate;
62 class WebContentsImpl; 63 class WebContentsImpl;
(...skipping 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after
1124 bool is_subframe_; 1125 bool is_subframe_;
1125 1126
1126 // Whether touch emulation is enabled in RenderWidgetHost. 1127 // Whether touch emulation is enabled in RenderWidgetHost.
1127 bool touch_emulation_enabled_; 1128 bool touch_emulation_enabled_;
1128 1129
1129 // Whether the last JavaScript dialog shown was suppressed. Used for testing. 1130 // Whether the last JavaScript dialog shown was suppressed. Used for testing.
1130 bool last_dialog_suppressed_; 1131 bool last_dialog_suppressed_;
1131 1132
1132 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; 1133 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_;
1133 1134
1135 scoped_ptr<MidiDispatcherHost> midi_dispatcher_host_;
1136
1134 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1137 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1135 }; 1138 };
1136 1139
1137 } // namespace content 1140 } // namespace content
1138 1141
1139 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1142 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698