OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |