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