| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_HOST_WINDOW_PROXY_H_ | 5 #ifndef REMOTING_HOST_HOST_WINDOW_PROXY_H_ |
| 6 #define REMOTING_HOST_HOST_WINDOW_PROXY_H_ | 6 #define REMOTING_HOST_HOST_WINDOW_PROXY_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "remoting/host/host_window.h" | 12 #include "remoting/host/host_window.h" |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class SingleThreadTaskRunner; | 15 class SingleThreadTaskRunner; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace remoting { | 18 namespace remoting { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 34 // All thread switching logic is implemented in the ref-counted |Core| class. | 34 // All thread switching logic is implemented in the ref-counted |Core| class. |
| 35 class Core; | 35 class Core; |
| 36 scoped_refptr<Core> core_; | 36 scoped_refptr<Core> core_; |
| 37 | 37 |
| 38 DISALLOW_COPY_AND_ASSIGN(HostWindowProxy); | 38 DISALLOW_COPY_AND_ASSIGN(HostWindowProxy); |
| 39 }; | 39 }; |
| 40 | 40 |
| 41 } // namespace remoting | 41 } // namespace remoting |
| 42 | 42 |
| 43 #endif // REMOTING_HOST_HOST_WINDOW_PROXY_H_ | 43 #endif // REMOTING_HOST_HOST_WINDOW_PROXY_H_ |
| OLD | NEW |