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

Unified Diff: content/renderer/idle_user_detector.h

Issue 8519001: Schedule idle timer of render thread when user is idle. Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/renderer/content_renderer_client.h ('k') | content/renderer/idle_user_detector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « content/public/renderer/content_renderer_client.h ('k') | content/renderer/idle_user_detector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698