| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 base::Callback<void(const std::string&)> callback) override; | 162 base::Callback<void(const std::string&)> callback) override; |
| 163 void ClearWebRtcLogMessageCallback() override; | 163 void ClearWebRtcLogMessageCallback() override; |
| 164 WebRtcStopRtpDumpCallback StartRtpDump( | 164 WebRtcStopRtpDumpCallback StartRtpDump( |
| 165 bool incoming, | 165 bool incoming, |
| 166 bool outgoing, | 166 bool outgoing, |
| 167 const WebRtcRtpPacketCallback& packet_callback) override; | 167 const WebRtcRtpPacketCallback& packet_callback) override; |
| 168 #endif | 168 #endif |
| 169 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; | 169 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; |
| 170 void BindInterface(const std::string& interface_name, | 170 void BindInterface(const std::string& interface_name, |
| 171 mojo::ScopedMessagePipeHandle interface_pipe) override; | 171 mojo::ScopedMessagePipeHandle interface_pipe) override; |
| 172 const service_manager::Identity& GetChildIdentity() const override; |
| 172 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() | 173 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() |
| 173 override; | 174 override; |
| 174 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; | 175 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; |
| 175 bool IsProcessBackgrounded() const override; | 176 bool IsProcessBackgrounded() const override; |
| 176 size_t GetWorkerRefCount() const override; | 177 size_t GetWorkerRefCount() const override; |
| 177 void IncrementServiceWorkerRefCount() override; | 178 void IncrementServiceWorkerRefCount() override; |
| 178 void DecrementServiceWorkerRefCount() override; | 179 void DecrementServiceWorkerRefCount() override; |
| 179 void IncrementSharedWorkerRefCount() override; | 180 void IncrementSharedWorkerRefCount() override; |
| 180 void DecrementSharedWorkerRefCount() override; | 181 void DecrementSharedWorkerRefCount() override; |
| 181 void ForceReleaseWorkerRefCounts() override; | 182 void ForceReleaseWorkerRefCounts() override; |
| (...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 FrameSinkProviderImpl frame_sink_provider_; | 621 FrameSinkProviderImpl frame_sink_provider_; |
| 621 | 622 |
| 622 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 623 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 623 | 624 |
| 624 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 625 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 625 }; | 626 }; |
| 626 | 627 |
| 627 } // namespace content | 628 } // namespace content |
| 628 | 629 |
| 629 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 630 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |