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

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

Issue 2318023002: //chrome/browser/chromeos: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Address comment and also remove non-trivial cases 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/origin_trials_component_installer_unittest.cc
diff --git a/chrome/browser/component_updater/origin_trials_component_installer_unittest.cc b/chrome/browser/component_updater/origin_trials_component_installer_unittest.cc
index 9876bf171c96450c8cbda0a08d699fcbd0ec5fec..34cbbf0694ed0115cd156d5232226ece4eb1fe9f 100644
--- a/chrome/browser/component_updater/origin_trials_component_installer_unittest.cc
+++ b/chrome/browser/component_updater/origin_trials_component_installer_unittest.cc
@@ -64,9 +64,9 @@ class OriginTrialsComponentInstallerTest : public PlatformTest {
manifest = base::MakeUnique<base::DictionaryValue>();
manifest->SetString(kManifestOriginTrialsKey, "");
}
- ASSERT_TRUE(traits_->VerifyInstallation(*manifest, temp_dir_.path()));
+ ASSERT_TRUE(traits_->VerifyInstallation(*manifest, temp_dir_.GetPath()));
const base::Version expected_version(kTestUpdateVersion);
- traits_->ComponentReady(expected_version, temp_dir_.path(),
+ traits_->ComponentReady(expected_version, temp_dir_.GetPath(),
std::move(manifest));
}

Powered by Google App Engine
This is Rietveld 408576698