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