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 "chrome/browser/extensions/api/gcd_private/gcd_private_api.h" | 5 #include "chrome/browser/extensions/api/gcd_private/gcd_private_api.h" |
6 | 6 |
7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
8 #include "base/location.h" | 8 #include "base/location.h" |
9 #include "base/memory/linked_ptr.h" | 9 #include "base/memory/linked_ptr.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/memory/scoped_vector.h" | |
12 #include "base/single_thread_task_runner.h" | 11 #include "base/single_thread_task_runner.h" |
13 #include "base/strings/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
14 #include "base/thread_task_runner_handle.h" | 13 #include "base/thread_task_runner_handle.h" |
15 #include "chrome/browser/local_discovery/cloud_device_list.h" | 14 #include "chrome/browser/local_discovery/cloud_device_list.h" |
16 #include "chrome/browser/local_discovery/cloud_print_printer_list.h" | 15 #include "chrome/browser/local_discovery/cloud_print_printer_list.h" |
17 #include "chrome/browser/local_discovery/gcd_api_flow.h" | 16 #include "chrome/browser/local_discovery/gcd_api_flow.h" |
18 #include "chrome/browser/local_discovery/gcd_constants.h" | 17 #include "chrome/browser/local_discovery/gcd_constants.h" |
19 #include "chrome/browser/local_discovery/privet_device_lister_impl.h" | 18 #include "chrome/browser/local_discovery/privet_device_lister_impl.h" |
20 #include "chrome/browser/local_discovery/privet_http_asynchronous_factory.h" | 19 #include "chrome/browser/local_discovery/privet_http_asynchronous_factory.h" |
21 #include "chrome/browser/local_discovery/privet_http_impl.h" | 20 #include "chrome/browser/local_discovery/privet_http_impl.h" |
(...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
883 } | 882 } |
884 | 883 |
885 GcdPrivateGetCommandsListFunction::~GcdPrivateGetCommandsListFunction() { | 884 GcdPrivateGetCommandsListFunction::~GcdPrivateGetCommandsListFunction() { |
886 } | 885 } |
887 | 886 |
888 bool GcdPrivateGetCommandsListFunction::RunAsync() { | 887 bool GcdPrivateGetCommandsListFunction::RunAsync() { |
889 return false; | 888 return false; |
890 } | 889 } |
891 | 890 |
892 } // namespace extensions | 891 } // namespace extensions |
OLD | NEW |