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

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: nasko nit Created 4 years, 10 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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 void Cleanup() override; 131 void Cleanup() override;
132 void AddPendingView() override; 132 void AddPendingView() override;
133 void RemovePendingView() override; 133 void RemovePendingView() override;
134 void SetSuddenTerminationAllowed(bool enabled) override; 134 void SetSuddenTerminationAllowed(bool enabled) override;
135 bool SuddenTerminationAllowed() const override; 135 bool SuddenTerminationAllowed() const override;
136 IPC::ChannelProxy* GetChannel() override; 136 IPC::ChannelProxy* GetChannel() override;
137 void AddFilter(BrowserMessageFilter* filter) override; 137 void AddFilter(BrowserMessageFilter* filter) override;
138 bool FastShutdownForPageCount(size_t count) override; 138 bool FastShutdownForPageCount(size_t count) override;
139 bool FastShutdownStarted() const override; 139 bool FastShutdownStarted() const override;
140 base::TimeDelta GetChildProcessIdleTime() const override; 140 base::TimeDelta GetChildProcessIdleTime() const override;
141 void ResumeRequestsForView(int route_id) override;
142 void FilterURL(bool empty_allowed, GURL* url) override; 141 void FilterURL(bool empty_allowed, GURL* url) override;
143 #if defined(ENABLE_WEBRTC) 142 #if defined(ENABLE_WEBRTC)
144 void EnableAudioDebugRecordings(const base::FilePath& file) override; 143 void EnableAudioDebugRecordings(const base::FilePath& file) override;
145 void DisableAudioDebugRecordings() override; 144 void DisableAudioDebugRecordings() override;
146 void EnableEventLogRecordings(const base::FilePath& file) override; 145 void EnableEventLogRecordings(const base::FilePath& file) override;
147 void DisableEventLogRecordings() override; 146 void DisableEventLogRecordings() override;
148 void SetWebRtcLogMessageCallback( 147 void SetWebRtcLogMessageCallback(
149 base::Callback<void(const std::string&)> callback) override; 148 base::Callback<void(const std::string&)> callback) override;
150 WebRtcStopRtpDumpCallback StartRtpDump( 149 WebRtcStopRtpDumpCallback StartRtpDump(
151 bool incoming, 150 bool incoming,
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 #endif 511 #endif
513 512
514 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; 513 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_;
515 514
516 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); 515 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl);
517 }; 516 };
518 517
519 } // namespace content 518 } // namespace content
520 519
521 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ 520 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698