Chromium Code Reviews| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 143 bool FastShutdownStarted() const override; | 143 bool FastShutdownStarted() const override; |
| 144 base::TimeDelta GetChildProcessIdleTime() const override; | 144 base::TimeDelta GetChildProcessIdleTime() const override; |
| 145 void FilterURL(bool empty_allowed, GURL* url) override; | 145 void FilterURL(bool empty_allowed, GURL* url) override; |
| 146 #if defined(ENABLE_WEBRTC) | 146 #if defined(ENABLE_WEBRTC) |
| 147 void EnableAudioDebugRecordings(const base::FilePath& file) override; | 147 void EnableAudioDebugRecordings(const base::FilePath& file) override; |
| 148 void DisableAudioDebugRecordings() override; | 148 void DisableAudioDebugRecordings() override; |
| 149 void EnableEventLogRecordings(const base::FilePath& file) override; | 149 void EnableEventLogRecordings(const base::FilePath& file) override; |
| 150 void DisableEventLogRecordings() override; | 150 void DisableEventLogRecordings() override; |
| 151 void SetWebRtcLogMessageCallback( | 151 void SetWebRtcLogMessageCallback( |
| 152 base::Callback<void(const std::string&)> callback) override; | 152 base::Callback<void(const std::string&)> callback) override; |
| 153 void UnsetWebRtcLogMessageCallback() override; | |
|
tommi (sloooow) - chröme
2016/04/07 12:51:44
nit: s/Unset/Clear
Henrik Grunell
2016/04/07 13:34:53
Done.
| |
| 153 WebRtcStopRtpDumpCallback StartRtpDump( | 154 WebRtcStopRtpDumpCallback StartRtpDump( |
| 154 bool incoming, | 155 bool incoming, |
| 155 bool outgoing, | 156 bool outgoing, |
| 156 const WebRtcRtpPacketCallback& packet_callback) override; | 157 const WebRtcRtpPacketCallback& packet_callback) override; |
| 157 #endif | 158 #endif |
| 158 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; | 159 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; |
| 159 void NotifyTimezoneChange(const std::string& timezone) override; | 160 void NotifyTimezoneChange(const std::string& timezone) override; |
| 160 ServiceRegistry* GetServiceRegistry() override; | 161 ServiceRegistry* GetServiceRegistry() override; |
| 161 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; | 162 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; |
| 162 bool SubscribeUniformEnabled() const override; | 163 bool SubscribeUniformEnabled() const override; |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 525 mojo::ScopedMessagePipeHandle in_process_renderer_handle_; | 526 mojo::ScopedMessagePipeHandle in_process_renderer_handle_; |
| 526 | 527 |
| 527 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 528 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 528 | 529 |
| 529 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 530 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 530 }; | 531 }; |
| 531 | 532 |
| 532 } // namespace content | 533 } // namespace content |
| 533 | 534 |
| 534 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 535 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |