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

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

Issue 1542743002: [RDHI] Refactored blocked_loaders_map_ to key by render frame route id (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix lambda return value Created 4 years, 11 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 <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 struct ViewHostMsg_DateTimeDialogValue_Params; 51 struct ViewHostMsg_DateTimeDialogValue_Params;
52 52
53 namespace content { 53 namespace content {
54 class BrowserPluginEmbedder; 54 class BrowserPluginEmbedder;
55 class BrowserPluginGuest; 55 class BrowserPluginGuest;
56 class DateTimeChooserAndroid; 56 class DateTimeChooserAndroid;
57 class DownloadItem; 57 class DownloadItem;
58 class GeolocationServiceContext; 58 class GeolocationServiceContext;
59 class InterstitialPageImpl; 59 class InterstitialPageImpl;
60 class JavaScriptDialogManager; 60 class JavaScriptDialogManager;
61 class LoaderIOThreadNotifier;
61 class ManifestManagerHost; 62 class ManifestManagerHost;
62 class MediaWebContentsObserver; 63 class MediaWebContentsObserver;
63 class PluginContentOriginWhitelist; 64 class PluginContentOriginWhitelist;
64 class PowerSaveBlocker; 65 class PowerSaveBlocker;
65 class RenderViewHost; 66 class RenderViewHost;
66 class RenderViewHostDelegateView; 67 class RenderViewHostDelegateView;
67 class RenderWidgetHostImpl; 68 class RenderWidgetHostImpl;
68 class RenderWidgetHostInputEventRouter; 69 class RenderWidgetHostInputEventRouter;
69 class SavePackage; 70 class SavePackage;
70 class ScreenOrientationDispatcherHost; 71 class ScreenOrientationDispatcherHost;
(...skipping 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1287 AccessibilityMode accessibility_mode_; 1288 AccessibilityMode accessibility_mode_;
1288 1289
1289 // Monitors power levels for audio streams associated with this WebContents. 1290 // Monitors power levels for audio streams associated with this WebContents.
1290 AudioStreamMonitor audio_stream_monitor_; 1291 AudioStreamMonitor audio_stream_monitor_;
1291 1292
1292 // Created on-demand to mute all audio output from this WebContents. 1293 // Created on-demand to mute all audio output from this WebContents.
1293 scoped_ptr<WebContentsAudioMuter> audio_muter_; 1294 scoped_ptr<WebContentsAudioMuter> audio_muter_;
1294 1295
1295 bool virtual_keyboard_requested_; 1296 bool virtual_keyboard_requested_;
1296 1297
1298 // Notifies ResourceDispatcherHostImpl of various events related to loading.
1299 scoped_ptr<LoaderIOThreadNotifier> loader_io_thread_notifier_;
1300
1297 // Manages media players, CDMs, and power save blockers for media. 1301 // Manages media players, CDMs, and power save blockers for media.
1298 scoped_ptr<MediaWebContentsObserver> media_web_contents_observer_; 1302 scoped_ptr<MediaWebContentsObserver> media_web_contents_observer_;
1299 1303
1300 scoped_ptr<RenderWidgetHostInputEventRouter> rwh_input_event_router_; 1304 scoped_ptr<RenderWidgetHostInputEventRouter> rwh_input_event_router_;
1301 1305
1302 PageImportanceSignals page_importance_signals_; 1306 PageImportanceSignals page_importance_signals_;
1303 1307
1304 bool page_scale_factor_is_one_; 1308 bool page_scale_factor_is_one_;
1305 1309
1306 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; 1310 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_;
(...skipping 14 matching lines...) Expand all
1321 // Adds/removes a callback called on creation of each new WebContents. 1325 // Adds/removes a callback called on creation of each new WebContents.
1322 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); 1326 static void AddCreatedCallbackForTesting(const CreatedCallback& callback);
1323 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); 1327 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback);
1324 1328
1325 DISALLOW_COPY_AND_ASSIGN(FriendZone); 1329 DISALLOW_COPY_AND_ASSIGN(FriendZone);
1326 }; 1330 };
1327 1331
1328 } // namespace content 1332 } // namespace content
1329 1333
1330 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1334 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698