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