OLD | NEW |
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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_BROWSER_MEDIA_CAPTURE_WINDOW_ACTIVITY_TRACKER_H_ | 5 #ifndef CONTENT_BROWSER_MEDIA_CAPTURE_WINDOW_ACTIVITY_TRACKER_H_ |
6 #define CONTENT_BROWSER_MEDIA_CAPTURE_WINDOW_ACTIVITY_TRACKER_H_ | 6 #define CONTENT_BROWSER_MEDIA_CAPTURE_WINDOW_ACTIVITY_TRACKER_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" |
10 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
11 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
12 #include "ui/gfx/native_widget_types.h" | 13 #include "ui/gfx/native_widget_types.h" |
13 | 14 |
14 namespace content { | 15 namespace content { |
15 | 16 |
16 // WindowActivityTracker is an interface that can be implememented to report | 17 // WindowActivityTracker is an interface that can be implememented to report |
17 // whether the user is actively interacting with UI. | 18 // whether the user is actively interacting with UI. |
18 class CONTENT_EXPORT WindowActivityTracker { | 19 class CONTENT_EXPORT WindowActivityTracker { |
19 public: | 20 public: |
(...skipping 28 matching lines...) Expand all Loading... |
48 // such as mouse movement, a single continuous movement is treated | 49 // such as mouse movement, a single continuous movement is treated |
49 // as one event. | 50 // as one event. |
50 int ui_events_count_; | 51 int ui_events_count_; |
51 | 52 |
52 DISALLOW_COPY_AND_ASSIGN(WindowActivityTracker); | 53 DISALLOW_COPY_AND_ASSIGN(WindowActivityTracker); |
53 }; | 54 }; |
54 | 55 |
55 } // namespace content | 56 } // namespace content |
56 | 57 |
57 #endif // CONTENT_BROWSER_MEDIA_CAPTURE_WINDOW_ACTIVITY_TRACKER_H_ | 58 #endif // CONTENT_BROWSER_MEDIA_CAPTURE_WINDOW_ACTIVITY_TRACKER_H_ |
OLD | NEW |