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

Unified Diff: content/browser/media/capture/window_activity_tracker_aura.h

Issue 1484403002: cast: Support for low-latency interactive mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years 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/browser/media/capture/window_activity_tracker_aura.h
diff --git a/content/browser/media/capture/window_activity_tracker_aura.h b/content/browser/media/capture/window_activity_tracker_aura.h
new file mode 100644
index 0000000000000000000000000000000000000000..c382c7a4bf601ea6b07000cc9eff3145cac85164
--- /dev/null
+++ b/content/browser/media/capture/window_activity_tracker_aura.h
@@ -0,0 +1,56 @@
+// Copyright (c) 2015 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_BROWSER_MEDIA_CAPTURE_WINDOW_ACTIVITY_TRACKER_AURA_H_
+#define CONTENT_BROWSER_MEDIA_CAPTURE_WINDOW_ACTIVITY_TRACKER_AURA_H_
+
+#include "base/macros.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/weak_ptr.h"
+#include "content/browser/media/capture/window_activity_tracker.h"
+#include "content/common/content_export.h"
+#include "ui/aura/window.h"
+#include "ui/events/event_handler.h"
+
+namespace content {
+
+// Tracks UI events and makes a decision on whether the user has been
+// actively interacting with a specified window.
+class CONTENT_EXPORT WindowActivityTrackerAura : public WindowActivityTracker,
+ public ui::EventHandler,
+ public aura::WindowObserver {
+ public:
+ explicit WindowActivityTrackerAura(aura::Window* window);
+ ~WindowActivityTrackerAura() final;
+
+ // WindowActivityTracker overrides.
+ bool IsUiInteractionActive() const final;
+ void Reset() final;
+ base::WeakPtr<WindowActivityTracker> GetWeakPtr() final;
+
+ private:
+ // ui::EventHandler overrides.
+ void OnEvent(ui::Event* event) final;
+
+ // aura::WindowObserver overrides.
+ void OnWindowDestroying(aura::Window* window) final;
+
+ aura::Window* window_;
+
+ // The last time a UI event was detected.
+ base::TimeTicks last_time_ui_event_detected_;
+
+ // The number of UI events detected so far. In case of continuous events
+ // such as mouse movement, a single continuous movement is treated
+ // as one event.
+ int ui_events_count_;
+
+ base::WeakPtrFactory<WindowActivityTrackerAura> weak_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(WindowActivityTrackerAura);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_MEDIA_CAPTURE_WINDOW_ACTIVITY_TRACKER_AURA_H_
« no previous file with comments | « content/browser/media/capture/window_activity_tracker.h ('k') | content/browser/media/capture/window_activity_tracker_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698