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

Side by Side Diff: content/browser/media/capture/window_activity_tracker.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 months 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 unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/browser/fileapi/native_file_util_unittest.cc ('k') | content/browser/notifications/notification_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698