| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 void Cleanup() override; | 135 void Cleanup() override; |
| 136 void AddPendingView() override; | 136 void AddPendingView() override; |
| 137 void RemovePendingView() override; | 137 void RemovePendingView() override; |
| 138 void SetSuddenTerminationAllowed(bool enabled) override; | 138 void SetSuddenTerminationAllowed(bool enabled) override; |
| 139 bool SuddenTerminationAllowed() const override; | 139 bool SuddenTerminationAllowed() const override; |
| 140 IPC::ChannelProxy* GetChannel() override; | 140 IPC::ChannelProxy* GetChannel() override; |
| 141 void AddFilter(BrowserMessageFilter* filter) override; | 141 void AddFilter(BrowserMessageFilter* filter) override; |
| 142 bool FastShutdownForPageCount(size_t count) override; | 142 bool FastShutdownForPageCount(size_t count) override; |
| 143 bool FastShutdownStarted() const override; | 143 bool FastShutdownStarted() const override; |
| 144 base::TimeDelta GetChildProcessIdleTime() const override; | 144 base::TimeDelta GetChildProcessIdleTime() const override; |
| 145 void ResumeRequestsForView(int route_id) override; | |
| 146 void FilterURL(bool empty_allowed, GURL* url) override; | 145 void FilterURL(bool empty_allowed, GURL* url) override; |
| 147 #if defined(ENABLE_WEBRTC) | 146 #if defined(ENABLE_WEBRTC) |
| 148 void EnableAudioDebugRecordings(const base::FilePath& file) override; | 147 void EnableAudioDebugRecordings(const base::FilePath& file) override; |
| 149 void DisableAudioDebugRecordings() override; | 148 void DisableAudioDebugRecordings() override; |
| 150 void EnableEventLogRecordings(const base::FilePath& file) override; | 149 void EnableEventLogRecordings(const base::FilePath& file) override; |
| 151 void DisableEventLogRecordings() override; | 150 void DisableEventLogRecordings() override; |
| 152 void SetWebRtcLogMessageCallback( | 151 void SetWebRtcLogMessageCallback( |
| 153 base::Callback<void(const std::string&)> callback) override; | 152 base::Callback<void(const std::string&)> callback) override; |
| 154 WebRtcStopRtpDumpCallback StartRtpDump( | 153 WebRtcStopRtpDumpCallback StartRtpDump( |
| 155 bool incoming, | 154 bool incoming, |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 #endif | 516 #endif |
| 518 | 517 |
| 519 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 518 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 520 | 519 |
| 521 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 520 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 522 }; | 521 }; |
| 523 | 522 |
| 524 } // namespace content | 523 } // namespace content |
| 525 | 524 |
| 526 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 525 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |