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

Side by Side Diff: content/public/browser/render_process_host.h

Issue 2304073003: Mojoify time zone update IPC from browser to renderer (Closed)
Patch Set: Rebase 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
« no previous file with comments | « content/common/view_messages.h ('k') | content/public/test/mock_render_process_host.h » ('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_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_
6 #define CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ 6 #define CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 virtual WebRtcStopRtpDumpCallback StartRtpDump( 251 virtual WebRtcStopRtpDumpCallback StartRtpDump(
252 bool incoming, 252 bool incoming,
253 bool outgoing, 253 bool outgoing,
254 const WebRtcRtpPacketCallback& packet_callback) = 0; 254 const WebRtcRtpPacketCallback& packet_callback) = 0;
255 #endif 255 #endif
256 256
257 // Tells the ResourceDispatcherHost to resume a deferred navigation without 257 // Tells the ResourceDispatcherHost to resume a deferred navigation without
258 // transferring it to a new renderer process. 258 // transferring it to a new renderer process.
259 virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id) = 0; 259 virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id) = 0;
260 260
261 // Notifies the renderer that the timezone configuration of the system might
262 // have changed.
263 virtual void NotifyTimezoneChange(const std::string& zone_id) = 0;
264
265 // Returns the shell::InterfaceProvider the browser process can use to bind 261 // Returns the shell::InterfaceProvider the browser process can use to bind
266 // interfaces exposed to it from the renderer. 262 // interfaces exposed to it from the renderer.
267 virtual shell::InterfaceProvider* GetRemoteInterfaces() = 0; 263 virtual shell::InterfaceProvider* GetRemoteInterfaces() = 0;
268 264
269 // Extracts any persistent-memory-allocator used for renderer metrics. 265 // Extracts any persistent-memory-allocator used for renderer metrics.
270 // Ownership is passed to the caller. To support sharing of histogram data 266 // Ownership is passed to the caller. To support sharing of histogram data
271 // between the Renderer and the Browser, the allocator is created when the 267 // between the Renderer and the Browser, the allocator is created when the
272 // process is created and later retrieved by the SubprocessMetricsProvider 268 // process is created and later retrieved by the SubprocessMetricsProvider
273 // for management. 269 // for management.
274 virtual std::unique_ptr<base::SharedPersistentMemoryAllocator> 270 virtual std::unique_ptr<base::SharedPersistentMemoryAllocator>
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 static void SetMaxRendererProcessCount(size_t count); 362 static void SetMaxRendererProcessCount(size_t count);
367 363
368 // Returns the current maximum number of renderer process hosts kept by the 364 // Returns the current maximum number of renderer process hosts kept by the
369 // content module. 365 // content module.
370 static size_t GetMaxRendererProcessCount(); 366 static size_t GetMaxRendererProcessCount();
371 }; 367 };
372 368
373 } // namespace content. 369 } // namespace content.
374 370
375 #endif // CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ 371 #endif // CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/public/test/mock_render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698