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

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

Issue 2304073003: Mojoify time zone update IPC from browser to renderer (Closed)
Patch Set: nits Created 4 years, 3 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
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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 bool StopWebRTCEventLog() override; 156 bool StopWebRTCEventLog() override;
157 void SetWebRtcLogMessageCallback( 157 void SetWebRtcLogMessageCallback(
158 base::Callback<void(const std::string&)> callback) override; 158 base::Callback<void(const std::string&)> callback) override;
159 void ClearWebRtcLogMessageCallback() override; 159 void ClearWebRtcLogMessageCallback() override;
160 WebRtcStopRtpDumpCallback StartRtpDump( 160 WebRtcStopRtpDumpCallback StartRtpDump(
161 bool incoming, 161 bool incoming,
162 bool outgoing, 162 bool outgoing,
163 const WebRtcRtpPacketCallback& packet_callback) override; 163 const WebRtcRtpPacketCallback& packet_callback) override;
164 #endif 164 #endif
165 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; 165 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override;
166 void NotifyTimezoneChange(const std::string& timezone) override;
167 shell::InterfaceProvider* GetRemoteInterfaces() override; 166 shell::InterfaceProvider* GetRemoteInterfaces() override;
168 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator() 167 std::unique_ptr<base::SharedPersistentMemoryAllocator> TakeMetricsAllocator()
169 override; 168 override;
170 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; 169 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override;
171 #if defined(ENABLE_BROWSER_CDMS) 170 #if defined(ENABLE_BROWSER_CDMS)
172 scoped_refptr<media::MediaKeys> GetCdm(int render_frame_id, 171 scoped_refptr<media::MediaKeys> GetCdm(int render_frame_id,
173 int cdm_id) const override; 172 int cdm_id) const override;
174 #endif 173 #endif
175 bool IsProcessBackgrounded() const override; 174 bool IsProcessBackgrounded() const override;
176 void IncrementWorkerRefCount() override; 175 void IncrementWorkerRefCount() override;
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 instance_weak_factory_; 573 instance_weak_factory_;
575 574
576 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; 575 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_;
577 576
578 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); 577 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl);
579 }; 578 };
580 579
581 } // namespace content 580 } // namespace content
582 581
583 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ 582 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698