| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/installer/util/helper.h" | 5 #include "chrome/installer/util/helper.h" |
| 6 | 6 |
| 7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "chrome/installer/util/browser_distribution.h" | 9 #include "chrome/installer/util/browser_distribution.h" |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 } | 26 } |
| 27 | 27 |
| 28 return install_path; | 28 return install_path; |
| 29 } | 29 } |
| 30 | 30 |
| 31 } // namespace | 31 } // namespace |
| 32 | 32 |
| 33 FilePath installer::GetChromeInstallPath(bool system_install, | 33 FilePath installer::GetChromeInstallPath(bool system_install, |
| 34 BrowserDistribution* dist) { | 34 BrowserDistribution* dist) { |
| 35 return GetChromeInstallBasePath(system_install, dist, | 35 return GetChromeInstallBasePath(system_install, dist, |
| 36 installer_util::kInstallBinaryDir); | 36 installer::kInstallBinaryDir); |
| 37 } | 37 } |
| 38 | 38 |
| 39 FilePath installer::GetChromeUserDataPath(BrowserDistribution* dist) { | 39 FilePath installer::GetChromeUserDataPath(BrowserDistribution* dist) { |
| 40 return GetChromeInstallBasePath(false, dist, | 40 return GetChromeInstallBasePath(false, dist, |
| 41 installer_util::kInstallUserDataDir); | 41 installer::kInstallUserDataDir); |
| 42 } | 42 } |
| OLD | NEW |