| Index: chrome/browser/component_updater/sw_reporter_installer_win.cc
|
| diff --git a/chrome/browser/component_updater/sw_reporter_installer_win.cc b/chrome/browser/component_updater/sw_reporter_installer_win.cc
|
| index 513362f08f8590aef98f1d390f382a31ab0febfa..4be32d7f8a98e2614c419ff1065162201cd2a17f 100644
|
| --- a/chrome/browser/component_updater/sw_reporter_installer_win.cc
|
| +++ b/chrome/browser/component_updater/sw_reporter_installer_win.cc
|
| @@ -28,8 +28,7 @@
|
| #include "chrome/browser/component_updater/component_updater_service.h"
|
| #include "chrome/browser/component_updater/component_updater_utils.h"
|
| #include "chrome/browser/component_updater/default_component_installer.h"
|
| -#include "chrome/common/chrome_paths.h"
|
| -#include "chrome/common/pref_names.h"
|
| +#include "components/component_updater/pref_names.h"
|
| #include "content/public/browser/browser_thread.h"
|
|
|
| using content::BrowserThread;
|
| @@ -162,8 +161,8 @@ class SwReporterInstallerTraits : public ComponentInstallerTraits {
|
| // The base directory on windows looks like:
|
| // <profile>\AppData\Local\Google\Chrome\User Data\SwReporter\.
|
| base::FilePath result;
|
| - PathService::Get(chrome::DIR_USER_DATA, &result);
|
| - return result.Append(FILE_PATH_LITERAL("SwReporter"));
|
| + PathService::Get(DIR_SW_REPORTER, &result);
|
| + return result;
|
| }
|
|
|
| static std::string ID() {
|
|
|