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 #include "extensions/browser/api/cast_channel/cast_channel_api.h" | 5 #include "extensions/browser/api/cast_channel/cast_channel_api.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/json/json_writer.h" | 10 #include "base/json/json_writer.h" |
| 11 #include "base/lazy_instance.h" |
11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
12 #include "base/strings/string_number_conversions.h" | 13 #include "base/strings/string_number_conversions.h" |
13 #include "base/time/default_tick_clock.h" | 14 #include "base/time/default_tick_clock.h" |
14 #include "base/values.h" | 15 #include "base/values.h" |
15 #include "content/public/browser/browser_thread.h" | 16 #include "content/public/browser/browser_thread.h" |
16 #include "extensions/browser/api/cast_channel/cast_socket.h" | 17 #include "extensions/browser/api/cast_channel/cast_socket.h" |
17 #include "extensions/browser/api/cast_channel/logger.h" | 18 #include "extensions/browser/api/cast_channel/logger.h" |
18 #include "extensions/browser/api/cast_channel/logging.pb.h" | 19 #include "extensions/browser/api/cast_channel/logging.pb.h" |
19 #include "extensions/browser/event_router.h" | 20 #include "extensions/browser/event_router.h" |
20 #include "net/base/ip_endpoint.h" | 21 #include "net/base/ip_endpoint.h" |
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 } else { | 503 } else { |
503 SetError("Unable to get logs."); | 504 SetError("Unable to get logs."); |
504 } | 505 } |
505 | 506 |
506 api_->GetLogger()->Reset(); | 507 api_->GetLogger()->Reset(); |
507 | 508 |
508 AsyncWorkCompleted(); | 509 AsyncWorkCompleted(); |
509 } | 510 } |
510 | 511 |
511 } // namespace extensions | 512 } // namespace extensions |
OLD | NEW |