| 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 <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/memory/linked_ptr.h" | 12 #include "base/memory/linked_ptr.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/threading/thread_checker.h" | 14 #include "base/threading/thread_checker.h" |
| 15 #include "extensions/browser/api/cast_channel/cast_socket.h" | 15 #include "extensions/browser/api/cast_channel/cast_socket.h" |
| 16 #include "extensions/browser/api/cast_channel/logger_util.h" | 16 #include "extensions/browser/api/cast_channel/logger_util.h" |
| 17 #include "extensions/browser/api/cast_channel/logging.pb.h" | 17 #include "extensions/common/api/cast_channel/logging.pb.h" |
| 18 #include "net/base/ip_endpoint.h" | 18 #include "net/base/ip_endpoint.h" |
| 19 | 19 |
| 20 namespace base { | 20 namespace base { |
| 21 class TickClock; | 21 class TickClock; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace extensions { | 24 namespace extensions { |
| 25 namespace core_api { | 25 namespace core_api { |
| 26 namespace cast_channel { | 26 namespace cast_channel { |
| 27 | 27 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 131 |
| 132 base::ThreadChecker thread_checker_; | 132 base::ThreadChecker thread_checker_; |
| 133 | 133 |
| 134 DISALLOW_COPY_AND_ASSIGN(Logger); | 134 DISALLOW_COPY_AND_ASSIGN(Logger); |
| 135 }; | 135 }; |
| 136 } // namespace cast_channel | 136 } // namespace cast_channel |
| 137 } // namespace api | 137 } // namespace api |
| 138 } // namespace extensions | 138 } // namespace extensions |
| 139 | 139 |
| 140 #endif // EXTENSIONS_BROWSER_API_CAST_CHANNEL_LOGGER_H_ | 140 #endif // EXTENSIONS_BROWSER_API_CAST_CHANNEL_LOGGER_H_ |
| OLD | NEW |