| Index: content/renderer/idle_user_detector.h
|
| diff --git a/content/renderer/idle_user_detector.h b/content/renderer/idle_user_detector.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2026d48dc187ae80d8fdb5ce8f5f013c22d6223c
|
| --- /dev/null
|
| +++ b/content/renderer/idle_user_detector.h
|
| @@ -0,0 +1,27 @@
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CONTENT_RENDERER_IDLE_USER_DETECTOR_H_
|
| +#define CONTENT_RENDERER_IDLE_USER_DETECTOR_H_
|
| +
|
| +#include "base/basictypes.h"
|
| +#include "content/public/renderer/render_view_observer.h"
|
| +
|
| +// Class which observes user input events and schedules the idle timer of the
|
| +// render thread.
|
| +class IdleUserDetector : public content::RenderViewObserver {
|
| + public:
|
| + IdleUserDetector(content::RenderView* render_view);
|
| + virtual ~IdleUserDetector();
|
| +
|
| + private:
|
| + // RenderViewObserver implementation:
|
| + virtual bool OnMessageReceived(const IPC::Message& message);
|
| +
|
| + void OnHandleInputEvent(const IPC::Message& message);
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(IdleUserDetector);
|
| +};
|
| +
|
| +#endif // CONTENT_RENDERER_IDLE_USER_DETECTOR_H_
|
|
|