| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 void SetWebRtcLogMessageCallback( | 152 void SetWebRtcLogMessageCallback( |
| 153 base::Callback<void(const std::string&)> callback) override; | 153 base::Callback<void(const std::string&)> callback) override; |
| 154 void ClearWebRtcLogMessageCallback() override; | 154 void ClearWebRtcLogMessageCallback() override; |
| 155 WebRtcStopRtpDumpCallback StartRtpDump( | 155 WebRtcStopRtpDumpCallback StartRtpDump( |
| 156 bool incoming, | 156 bool incoming, |
| 157 bool outgoing, | 157 bool outgoing, |
| 158 const WebRtcRtpPacketCallback& packet_callback) override; | 158 const WebRtcRtpPacketCallback& packet_callback) override; |
| 159 #endif | 159 #endif |
| 160 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; | 160 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; |
| 161 service_manager::InterfaceProvider* GetRemoteInterfaces() override; | 161 service_manager::InterfaceProvider* GetRemoteInterfaces() override; |
| 162 content::AssociatedInterfaceProvider* |
| 163 GetAssociatedInterfaceProviderForTesting() override; |
| 162 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() | 164 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() |
| 163 override; | 165 override; |
| 164 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; | 166 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; |
| 165 bool IsProcessBackgrounded() const override; | 167 bool IsProcessBackgrounded() const override; |
| 166 size_t GetWorkerRefCount() const override; | 168 size_t GetWorkerRefCount() const override; |
| 167 void IncrementServiceWorkerRefCount() override; | 169 void IncrementServiceWorkerRefCount() override; |
| 168 void DecrementServiceWorkerRefCount() override; | 170 void DecrementServiceWorkerRefCount() override; |
| 169 void IncrementSharedWorkerRefCount() override; | 171 void IncrementSharedWorkerRefCount() override; |
| 170 void DecrementSharedWorkerRefCount() override; | 172 void DecrementSharedWorkerRefCount() override; |
| 171 void ForceReleaseWorkerRefCounts() override; | 173 void ForceReleaseWorkerRefCounts() override; |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 instance_weak_factory_; | 590 instance_weak_factory_; |
| 589 | 591 |
| 590 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 592 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 591 | 593 |
| 592 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 594 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 593 }; | 595 }; |
| 594 | 596 |
| 595 } // namespace content | 597 } // namespace content |
| 596 | 598 |
| 597 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 599 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |