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 SHELL_APPLICATION_MANAGER_NETWORK_FETCHER_H_ |
6 #define SHELL_APPLICATION_MANAGER_NETWORK_FETCHER_H_ | 6 #define SHELL_APPLICATION_MANAGER_NETWORK_FETCHER_H_ |
7 | 7 |
8 #include "shell/application_manager/fetcher.h" | 8 #include "shell/application_manager/fetcher.h" |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 25 matching lines...) Expand all Loading... |
36 GURL GetRedirectURL() const override; | 36 GURL GetRedirectURL() const override; |
37 | 37 |
38 URLResponsePtr AsURLResponse(base::TaskRunner* task_runner, | 38 URLResponsePtr AsURLResponse(base::TaskRunner* task_runner, |
39 uint32_t skip) override; | 39 uint32_t skip) override; |
40 | 40 |
41 static void RecordCacheToURLMapping(const base::FilePath& path, | 41 static void RecordCacheToURLMapping(const base::FilePath& path, |
42 const GURL& url); | 42 const GURL& url); |
43 | 43 |
44 // AppIds should be be both predictable and unique, but any hash would work. | 44 // AppIds should be be both predictable and unique, but any hash would work. |
45 // Currently we use sha256 from crypto/secure_hash.h | 45 // Currently we use sha256 from crypto/secure_hash.h |
46 static bool ComputeAppId(const base::FilePath& path, | 46 static bool ComputeAppId(const GURL& canonical_url, |
| 47 const base::FilePath& path, |
47 std::string* digest_string); | 48 std::string* digest_string); |
48 | 49 |
49 static bool RenameToAppId(const base::FilePath& old_path, | 50 static bool RenameToAppId(const GURL& canonical_url, |
| 51 const base::FilePath& old_path, |
50 base::FilePath* new_path); | 52 base::FilePath* new_path); |
51 | 53 |
52 void CopyCompleted(base::Callback<void(const base::FilePath&, bool)> callback, | 54 void CopyCompleted(base::Callback<void(const base::FilePath&, bool)> callback, |
53 bool success); | 55 bool success); |
54 | 56 |
55 void AsPath( | 57 void AsPath( |
56 base::TaskRunner* task_runner, | 58 base::TaskRunner* task_runner, |
57 base::Callback<void(const base::FilePath&, bool)> callback) override; | 59 base::Callback<void(const base::FilePath&, bool)> callback) override; |
58 | 60 |
59 std::string MimeType() override; | 61 std::string MimeType() override; |
(...skipping 13 matching lines...) Expand all Loading... |
73 base::FilePath path_; | 75 base::FilePath path_; |
74 base::WeakPtrFactory<NetworkFetcher> weak_ptr_factory_; | 76 base::WeakPtrFactory<NetworkFetcher> weak_ptr_factory_; |
75 | 77 |
76 DISALLOW_COPY_AND_ASSIGN(NetworkFetcher); | 78 DISALLOW_COPY_AND_ASSIGN(NetworkFetcher); |
77 }; | 79 }; |
78 | 80 |
79 } // namespace shell | 81 } // namespace shell |
80 } // namespace mojo | 82 } // namespace mojo |
81 | 83 |
82 #endif // SHELL_APPLICATION_MANAGER_NETWORK_FETCHER_H_ | 84 #endif // SHELL_APPLICATION_MANAGER_NETWORK_FETCHER_H_ |
OLD | NEW |