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

Side by Side Diff: content/browser/renderer_host/render_process_host_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: just comments / minor restructuring (trybots previous) Created 4 years, 12 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_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 #include <string> 10 #include <string>
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 void Cleanup() override; 130 void Cleanup() override;
131 void AddPendingView() override; 131 void AddPendingView() override;
132 void RemovePendingView() override; 132 void RemovePendingView() override;
133 void SetSuddenTerminationAllowed(bool enabled) override; 133 void SetSuddenTerminationAllowed(bool enabled) override;
134 bool SuddenTerminationAllowed() const override; 134 bool SuddenTerminationAllowed() const override;
135 IPC::ChannelProxy* GetChannel() override; 135 IPC::ChannelProxy* GetChannel() override;
136 void AddFilter(BrowserMessageFilter* filter) override; 136 void AddFilter(BrowserMessageFilter* filter) override;
137 bool FastShutdownForPageCount(size_t count) override; 137 bool FastShutdownForPageCount(size_t count) override;
138 bool FastShutdownStarted() const override; 138 bool FastShutdownStarted() const override;
139 base::TimeDelta GetChildProcessIdleTime() const override; 139 base::TimeDelta GetChildProcessIdleTime() const override;
140 void ResumeRequestsForView(int route_id) override; 140 void ResumeRequestsForFrame(int route_id) override;
141 void FilterURL(bool empty_allowed, GURL* url) override; 141 void FilterURL(bool empty_allowed, GURL* url) override;
142 #if defined(ENABLE_WEBRTC) 142 #if defined(ENABLE_WEBRTC)
143 void EnableAudioDebugRecordings(const base::FilePath& file) override; 143 void EnableAudioDebugRecordings(const base::FilePath& file) override;
144 void DisableAudioDebugRecordings() override; 144 void DisableAudioDebugRecordings() override;
145 void EnableEventLogRecordings(const base::FilePath& file) override; 145 void EnableEventLogRecordings(const base::FilePath& file) override;
146 void DisableEventLogRecordings() override; 146 void DisableEventLogRecordings() override;
147 void SetWebRtcLogMessageCallback( 147 void SetWebRtcLogMessageCallback(
148 base::Callback<void(const std::string&)> callback) override; 148 base::Callback<void(const std::string&)> callback) override;
149 WebRtcStopRtpDumpCallback StartRtpDump( 149 WebRtcStopRtpDumpCallback StartRtpDump(
150 bool incoming, 150 bool incoming,
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 #endif 512 #endif
513 513
514 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; 514 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_;
515 515
516 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); 516 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl);
517 }; 517 };
518 518
519 } // namespace content 519 } // namespace content
520 520
521 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ 521 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698