| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 UI_SNAPSHOT_SCREENSHOT_GRABBER_H_ | 5 #ifndef UI_SNAPSHOT_SCREENSHOT_GRABBER_H_ |
| 6 #define UI_SNAPSHOT_SCREENSHOT_GRABBER_H_ | 6 #define UI_SNAPSHOT_SCREENSHOT_GRABBER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/memory/ref_counted_memory.h" | 12 #include "base/memory/ref_counted_memory.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 15 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
| 16 #include "base/time/time.h" | 16 #include "base/time/time.h" |
| 17 #include "ui/aura/window.h" | |
| 18 #include "ui/gfx/geometry/rect.h" | 17 #include "ui/gfx/geometry/rect.h" |
| 18 #include "ui/gfx/native_widget_types.h" |
| 19 #include "ui/snapshot/screenshot_grabber_observer.h" | 19 #include "ui/snapshot/screenshot_grabber_observer.h" |
| 20 #include "ui/snapshot/snapshot_export.h" | 20 #include "ui/snapshot/snapshot_export.h" |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 class TaskRunner; | 23 class TaskRunner; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace ui { | 26 namespace ui { |
| 27 | 27 |
| 28 // TODO(flackr): Componentize google drive so that we don't need the | 28 // TODO(flackr): Componentize google drive so that we don't need the |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 | 92 |
| 93 ObserverList<ScreenshotGrabberObserver> observers_; | 93 ObserverList<ScreenshotGrabberObserver> observers_; |
| 94 base::WeakPtrFactory<ScreenshotGrabber> factory_; | 94 base::WeakPtrFactory<ScreenshotGrabber> factory_; |
| 95 | 95 |
| 96 DISALLOW_COPY_AND_ASSIGN(ScreenshotGrabber); | 96 DISALLOW_COPY_AND_ASSIGN(ScreenshotGrabber); |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 } // namespace ui | 99 } // namespace ui |
| 100 | 100 |
| 101 #endif // UI_SNAPSHOT_SCREENSHOT_GRABBER_H_ | 101 #endif // UI_SNAPSHOT_SCREENSHOT_GRABBER_H_ |
| OLD | NEW |