Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 2606593002: [ServiceWorker] Associate interfaces.
Patch Set: Fix unit tests Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698