| Index: content/browser/renderer_host/render_process_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
|
| index 03a6f0c42fafe8bee6cd55c97b858fa9c6473005..8dc8647ea63c353425d2b07a20b1cb1f864385d5 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.h
|
| +++ b/content/browser/renderer_host/render_process_host_impl.h
|
| @@ -156,6 +156,8 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| void ResumeDeferredNavigation(const GlobalRequestID& request_id) override;
|
| void NotifyTimezoneChange(const std::string& timezone) override;
|
| ServiceRegistry* GetServiceRegistry() override;
|
| + scoped_ptr<base::SharedPersistentMemoryAllocator> GetMetricsAllocator()
|
| + override;
|
| const base::TimeTicks& GetInitTimeForNavigationMetrics() const override;
|
| bool SubscribeUniformEnabled() const override;
|
| void OnAddSubscription(unsigned int target) override;
|
| @@ -505,6 +507,8 @@ class CONTENT_EXPORT RenderProcessHostImpl
|
| // Whether or not the CHROMIUM_subscribe_uniform WebGL extension is enabled
|
| bool subscribe_uniform_enabled_;
|
|
|
| + scoped_ptr<base::SharedPersistentMemoryAllocator> metrics_allocator_;
|
| +
|
| bool channel_connected_;
|
| bool sent_render_process_ready_;
|
|
|
|
|