OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/component_updater/test/test_installer.h" | 5 #include "chrome/browser/component_updater/test/test_installer.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 #include "base/values.h" | 9 #include "base/values.h" |
10 | 10 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 56 |
57 | 57 |
58 bool VersionedTestInstaller::Install(const base::DictionaryValue& manifest, | 58 bool VersionedTestInstaller::Install(const base::DictionaryValue& manifest, |
59 const base::FilePath& unpack_path) { | 59 const base::FilePath& unpack_path) { |
60 std::string version_string; | 60 std::string version_string; |
61 manifest.GetStringASCII("version", &version_string); | 61 manifest.GetStringASCII("version", &version_string); |
62 Version version(version_string.c_str()); | 62 Version version(version_string.c_str()); |
63 | 63 |
64 base::FilePath path; | 64 base::FilePath path; |
65 path = install_directory_.AppendASCII(version.GetString()); | 65 path = install_directory_.AppendASCII(version.GetString()); |
66 file_util::CreateDirectory(path.DirName()); | 66 base::CreateDirectory(path.DirName()); |
67 if (!base::Move(unpack_path, path)) | 67 if (!base::Move(unpack_path, path)) |
68 return false; | 68 return false; |
69 current_version_ = version; | 69 current_version_ = version; |
70 ++install_count_; | 70 ++install_count_; |
71 return true; | 71 return true; |
72 } | 72 } |
73 | 73 |
74 bool VersionedTestInstaller::GetInstalledFile(const std::string& file, | 74 bool VersionedTestInstaller::GetInstalledFile(const std::string& file, |
75 base::FilePath* installed_file) { | 75 base::FilePath* installed_file) { |
76 base::FilePath path; | 76 base::FilePath path; |
77 path = install_directory_.AppendASCII(current_version_.GetString()); | 77 path = install_directory_.AppendASCII(current_version_.GetString()); |
78 *installed_file = path.Append(base::FilePath::FromUTF8Unsafe(file)); | 78 *installed_file = path.Append(base::FilePath::FromUTF8Unsafe(file)); |
79 return true; | 79 return true; |
80 } | 80 } |
OLD | NEW |