Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4576)

Unified Diff: chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc

Issue 2317993003: //chrome/browser and //components A-E: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Just rebased Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc
diff --git a/chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc b/chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc
index 3d30c40bb77ddb68cc56026afc9f05f2988b0527..c8c278fce04ae97306025ca684e86c0ea56925ef 100644
--- a/chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc
+++ b/chrome/browser/component_updater/subresource_filter_component_installer_unittest.cc
@@ -98,7 +98,7 @@ class SubresourceFilterComponentInstallerTest : public PlatformTest {
std::unique_ptr<subresource_filter::RulesetService> service(
new TestRulesetService(&pref_service_, task_runner_,
- ruleset_service_dir_.path()));
+ ruleset_service_dir_.GetPath()));
TestingBrowserProcess::GetGlobal()->SetRulesetService(std::move(service));
traits_.reset(new SubresourceFilterComponentInstallerTraits());
@@ -119,7 +119,7 @@ class SubresourceFilterComponentInstallerTest : public PlatformTest {
}
base::FilePath component_install_dir() {
- return component_install_dir_.path();
+ return component_install_dir_.GetPath();
}
// If |license_contents| is null, no license file will be created.

Powered by Google App Engine
This is Rietveld 408576698