Index: chrome/installer/util/product.cc |
diff --git a/chrome/installer/util/product.cc b/chrome/installer/util/product.cc |
index 77474011d0a3b47845b3613d030a95f32ea92647..2e6c855329a584c317fc127f11d159db8632644d 100644 |
--- a/chrome/installer/util/product.cc |
+++ b/chrome/installer/util/product.cc |
@@ -62,8 +62,8 @@ void Product::InitializeFromUninstallCommand( |
operations_->ReadOptions(uninstall_command, &options_); |
} |
-FilePath Product::GetUserDataPath() const { |
- return GetChromeUserDataPath(distribution_); |
+void Product::GetUserDataPaths(std::vector<FilePath>* paths) const { |
+ GetChromeUserDataPaths(distribution_, paths); |
} |
bool Product::LaunchChrome(const FilePath& application_path) const { |