| 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 REMOTING_HOST_CHROMEOS_AURA_DESKTOP_CAPTURER_H_ | 5 #ifndef REMOTING_HOST_CHROMEOS_AURA_DESKTOP_CAPTURER_H_ |
| 6 #define REMOTING_HOST_CHROMEOS_AURA_DESKTOP_CAPTURER_H_ | 6 #define REMOTING_HOST_CHROMEOS_AURA_DESKTOP_CAPTURER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 10 #include "third_party/webrtc/modules/desktop_capture/screen_capturer.h" | 11 #include "third_party/webrtc/modules/desktop_capture/screen_capturer.h" |
| 11 | 12 |
| 12 namespace cc { | 13 namespace cc { |
| 13 class CopyOutputResult; | 14 class CopyOutputResult; |
| 14 } // namespace cc | 15 } // namespace cc |
| 15 | 16 |
| 16 namespace aura { | 17 namespace aura { |
| 17 class Window; | 18 class Window; |
| 18 } // namespace aura | 19 } // namespace aura |
| (...skipping 26 matching lines...) Expand all Loading... |
| 45 aura::Window* desktop_window_; | 46 aura::Window* desktop_window_; |
| 46 | 47 |
| 47 base::WeakPtrFactory<AuraDesktopCapturer> weak_factory_; | 48 base::WeakPtrFactory<AuraDesktopCapturer> weak_factory_; |
| 48 | 49 |
| 49 DISALLOW_COPY_AND_ASSIGN(AuraDesktopCapturer); | 50 DISALLOW_COPY_AND_ASSIGN(AuraDesktopCapturer); |
| 50 }; | 51 }; |
| 51 | 52 |
| 52 } // namespace remoting | 53 } // namespace remoting |
| 53 | 54 |
| 54 #endif // REMOTING_HOST_CHROMEOS_AURA_DESKTOP_CAPTURER_H_ | 55 #endif // REMOTING_HOST_CHROMEOS_AURA_DESKTOP_CAPTURER_H_ |
| OLD | NEW |