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 SHELL_APPLICATION_MANAGER_NETWORK_FETCHER_H_ | 5 #ifndef MOJO_SHELL_NETWORK_FETCHER_H_ |
6 #define SHELL_APPLICATION_MANAGER_NETWORK_FETCHER_H_ | 6 #define MOJO_SHELL_NETWORK_FETCHER_H_ |
7 | 7 |
8 #include "mojo/shell/application_manager/fetcher.h" | 8 #include "mojo/shell/fetcher.h" |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" | 12 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" |
13 #include "url/gurl.h" | 13 #include "url/gurl.h" |
14 | 14 |
15 namespace mojo { | 15 namespace mojo { |
16 | 16 |
17 class NetworkService; | 17 class NetworkService; |
18 | 18 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 URLResponsePtr response_; | 73 URLResponsePtr response_; |
74 base::FilePath path_; | 74 base::FilePath path_; |
75 base::WeakPtrFactory<NetworkFetcher> weak_ptr_factory_; | 75 base::WeakPtrFactory<NetworkFetcher> weak_ptr_factory_; |
76 | 76 |
77 DISALLOW_COPY_AND_ASSIGN(NetworkFetcher); | 77 DISALLOW_COPY_AND_ASSIGN(NetworkFetcher); |
78 }; | 78 }; |
79 | 79 |
80 } // namespace shell | 80 } // namespace shell |
81 } // namespace mojo | 81 } // namespace mojo |
82 | 82 |
83 #endif // SHELL_APPLICATION_MANAGER_NETWORK_FETCHER_H_ | 83 #endif // MOJO_SHELL_NETWORK_FETCHER_H_ |
OLD | NEW |