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

Unified Diff: content/renderer/idle_user_detector.h

Issue 8513008: Schedule idle handler in the foreground tab based on CPU usage and user activity. (Closed) 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
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..5bef3b5806dcf693d351e5c0666408d91318ff10
--- /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 postpones
+// idle notifications if the user is active.
+class IdleUserDetector : public content::RenderViewObserver {
ulan 2011/11/16 14:14:46 Is overhead of having additional RenderViewObserve
+ public:
+ IdleUserDetector(content::RenderView* render_view);
+ virtual ~IdleUserDetector();
+
+ private:
+ // RenderViewObserver implementation:
+ virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+
+ void OnHandleInputEvent(const IPC::Message& message);
+
+ DISALLOW_COPY_AND_ASSIGN(IdleUserDetector);
+};
+
+#endif // CONTENT_RENDERER_IDLE_USER_DETECTOR_H_

Powered by Google App Engine
This is Rietveld 408576698