Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_RENDERER_IDLE_USER_DETECTOR_H_ | 5 #ifndef CONTENT_RENDERER_IDLE_USER_DETECTOR_H_ |
| 6 #define CONTENT_RENDERER_IDLE_USER_DETECTOR_H_ | 6 #define CONTENT_RENDERER_IDLE_USER_DETECTOR_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "content/public/renderer/render_view_observer.h" | 9 #include "content/public/renderer/render_view_observer.h" |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 23 class IdleUserDetector : public RenderViewObserver { | 23 class IdleUserDetector : public RenderViewObserver { |
| 24 public: | 24 public: |
| 25 IdleUserDetector(RenderView* render_view); | 25 IdleUserDetector(RenderView* render_view); |
| 26 ~IdleUserDetector() override; | 26 ~IdleUserDetector() override; |
| 27 | 27 |
| 28 private: | 28 private: |
| 29 // RenderViewObserver implementation: | 29 // RenderViewObserver implementation: |
| 30 bool OnMessageReceived(const IPC::Message& message) override; | 30 bool OnMessageReceived(const IPC::Message& message) override; |
| 31 | 31 |
| 32 void OnHandleInputEvent(const blink::WebInputEvent* event, | 32 void OnHandleInputEvent(const blink::WebInputEvent* event, |
| 33 const ui::LatencyInfo& latency_info); | 33 const ui::LatencyInfo& latency_info, |
| 34 bool passive); | |
|
tdresser
2016/01/26 16:34:37
Should this method (thoughout) take an enum? There
dtapuska
2016/01/26 16:53:15
sgtm; suggested name? Its like the event calling d
tdresser
2016/01/26 18:45:42
Something like a RenderViewObserver::IsBlocking en
| |
| 34 | 35 |
| 35 DISALLOW_COPY_AND_ASSIGN(IdleUserDetector); | 36 DISALLOW_COPY_AND_ASSIGN(IdleUserDetector); |
| 36 }; | 37 }; |
| 37 | 38 |
| 38 } // namespace content | 39 } // namespace content |
| 39 | 40 |
| 40 #endif // CONTENT_RENDERER_IDLE_USER_DETECTOR_H_ | 41 #endif // CONTENT_RENDERER_IDLE_USER_DETECTOR_H_ |
| OLD | NEW |