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 EXTENSIONS_BROWSER_API_CAST_CHANNEL_LOGGER_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_CAST_CHANNEL_LOGGER_H_ |
6 #define EXTENSIONS_BROWSER_API_CAST_CHANNEL_LOGGER_H_ | 6 #define EXTENSIONS_BROWSER_API_CAST_CHANNEL_LOGGER_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 |
8 #include <deque> | 10 #include <deque> |
9 #include <map> | 11 #include <map> |
10 #include <string> | 12 #include <string> |
11 | 13 |
12 #include "base/basictypes.h" | 14 #include "base/macros.h" |
13 #include "base/memory/linked_ptr.h" | 15 #include "base/memory/linked_ptr.h" |
14 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
15 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
16 #include "base/threading/thread_checker.h" | 18 #include "base/threading/thread_checker.h" |
17 #include "extensions/browser/api/cast_channel/logger_util.h" | 19 #include "extensions/browser/api/cast_channel/logger_util.h" |
18 #include "extensions/common/api/cast_channel/logging.pb.h" | 20 #include "extensions/common/api/cast_channel/logging.pb.h" |
19 #include "net/base/ip_endpoint.h" | 21 #include "net/base/ip_endpoint.h" |
20 | 22 |
21 namespace base { | 23 namespace base { |
22 class Clock; | 24 class Clock; |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 | 138 |
137 base::ThreadChecker thread_checker_; | 139 base::ThreadChecker thread_checker_; |
138 | 140 |
139 DISALLOW_COPY_AND_ASSIGN(Logger); | 141 DISALLOW_COPY_AND_ASSIGN(Logger); |
140 }; | 142 }; |
141 } // namespace cast_channel | 143 } // namespace cast_channel |
142 } // namespace api | 144 } // namespace api |
143 } // namespace extensions | 145 } // namespace extensions |
144 | 146 |
145 #endif // EXTENSIONS_BROWSER_API_CAST_CHANNEL_LOGGER_H_ | 147 #endif // EXTENSIONS_BROWSER_API_CAST_CHANNEL_LOGGER_H_ |
OLD | NEW |