Chromium Code Reviews| Index: content/renderer/renderer_blink_platform_impl.h |
| diff --git a/content/renderer/renderer_blink_platform_impl.h b/content/renderer/renderer_blink_platform_impl.h |
| index 235a66fdaabdfa11aa965b4185a9903205ba21c7..0331a6e2333501ec652f7b85d24ec7bf4681ac17 100644 |
| --- a/content/renderer/renderer_blink_platform_impl.h |
| +++ b/content/renderer/renderer_blink_platform_impl.h |
| @@ -170,6 +170,8 @@ class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { |
| void recordRappor(const char* metric, |
| const blink::WebString& sample) override; |
| void recordRapporURL(const char* metric, const blink::WebURL& url) override; |
| + double currentTime() override; |
|
jochen (gone - plz use gerrit)
2015/11/05 01:25:23
can you change these two methods (and the ones on
alex clarke (OOO till 29th)
2015/11/05 15:27:20
This is a good idea. Too bad we can't use base::T
|
| + double monotonicallyIncreasingTime() override; |
| // Set the PlatformEventObserverBase in |platform_event_observers_| associated |
| // with |type| to |observer|. If there was already an observer associated to |
| @@ -275,6 +277,8 @@ class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl { |
| IDMap<PlatformEventObserverBase, IDMapOwnPointer> platform_event_observers_; |
| + scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED |
| + |
| DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| }; |