OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CHROMECAST_BASE_DEVICE_CAPABILITIES_IMPL_H_ | 5 #ifndef CHROMECAST_BASE_DEVICE_CAPABILITIES_IMPL_H_ |
6 #define CHROMECAST_BASE_DEVICE_CAPABILITIES_IMPL_H_ | 6 #define CHROMECAST_BASE_DEVICE_CAPABILITIES_IMPL_H_ |
7 | 7 |
| 8 #include <string> |
| 9 |
8 #include "base/containers/scoped_ptr_hash_map.h" | 10 #include "base/containers/scoped_ptr_hash_map.h" |
9 #include "base/macros.h" | 11 #include "base/macros.h" |
10 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
11 #include "base/observer_list_threadsafe.h" | 13 #include "base/observer_list_threadsafe.h" |
12 #include "base/synchronization/lock.h" | 14 #include "base/synchronization/lock.h" |
13 #include "chromecast/base/device_capabilities.h" | 15 #include "chromecast/base/device_capabilities.h" |
14 | 16 |
15 namespace base { | 17 namespace base { |
16 class SingleThreadTaskRunner; | 18 class SingleThreadTaskRunner; |
17 } | 19 } |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 90 |
89 ValidatorMap validator_map_; | 91 ValidatorMap validator_map_; |
90 const scoped_refptr<base::ObserverListThreadSafe<Observer>> observer_list_; | 92 const scoped_refptr<base::ObserverListThreadSafe<Observer>> observer_list_; |
91 | 93 |
92 DISALLOW_COPY_AND_ASSIGN(DeviceCapabilitiesImpl); | 94 DISALLOW_COPY_AND_ASSIGN(DeviceCapabilitiesImpl); |
93 }; | 95 }; |
94 | 96 |
95 } // namespace chromecast | 97 } // namespace chromecast |
96 | 98 |
97 #endif // CHROMECAST_BASE_DEVICE_CAPABILITIES_IMPL_H_ | 99 #endif // CHROMECAST_BASE_DEVICE_CAPABILITIES_IMPL_H_ |
OLD | NEW |