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

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

Issue 697203006: Update the ICU's default timezone in render (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 7 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 | « base/i18n/icu_util.cc ('k') | 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 <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 #include <string> 10 #include <string>
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 void EnableAecDump(const base::FilePath& file) override; 135 void EnableAecDump(const base::FilePath& file) override;
136 void DisableAecDump() override; 136 void DisableAecDump() override;
137 void SetWebRtcLogMessageCallback( 137 void SetWebRtcLogMessageCallback(
138 base::Callback<void(const std::string&)> callback) override; 138 base::Callback<void(const std::string&)> callback) override;
139 WebRtcStopRtpDumpCallback StartRtpDump( 139 WebRtcStopRtpDumpCallback StartRtpDump(
140 bool incoming, 140 bool incoming,
141 bool outgoing, 141 bool outgoing,
142 const WebRtcRtpPacketCallback& packet_callback) override; 142 const WebRtcRtpPacketCallback& packet_callback) override;
143 #endif 143 #endif
144 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; 144 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override;
145 void NotifyTimezoneChange() override; 145 void NotifyTimezoneChange(const std::string& timezone) override;
146 ServiceRegistry* GetServiceRegistry() override; 146 ServiceRegistry* GetServiceRegistry() override;
147 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; 147 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override;
148 bool SubscribeUniformEnabled() const override; 148 bool SubscribeUniformEnabled() const override;
149 void OnAddSubscription(unsigned int target) override; 149 void OnAddSubscription(unsigned int target) override;
150 void OnRemoveSubscription(unsigned int target) override; 150 void OnRemoveSubscription(unsigned int target) override;
151 void SendUpdateValueState( 151 void SendUpdateValueState(
152 unsigned int target, const gpu::ValueState& state) override; 152 unsigned int target, const gpu::ValueState& state) override;
153 #if defined(ENABLE_BROWSER_CDMS) 153 #if defined(ENABLE_BROWSER_CDMS)
154 media::BrowserCdm* GetBrowserCdm(int render_frame_id, 154 media::BrowserCdm* GetBrowserCdm(int render_frame_id,
155 int cdm_id) const override; 155 int cdm_id) const override;
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 bool subscribe_uniform_enabled_; 503 bool subscribe_uniform_enabled_;
504 504
505 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; 505 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_;
506 506
507 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); 507 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl);
508 }; 508 };
509 509
510 } // namespace content 510 } // namespace content
511 511
512 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ 512 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « base/i18n/icu_util.cc ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698