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

Unified Diff: chrome/common/extensions/chrome_manifest_url_handlers_unittest.cc

Issue 2314363002: extensions: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Comment addressed 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/common/extensions/chrome_manifest_url_handlers_unittest.cc
diff --git a/chrome/common/extensions/chrome_manifest_url_handlers_unittest.cc b/chrome/common/extensions/chrome_manifest_url_handlers_unittest.cc
index aed51ad17fecfdd856f4030ba75fdf9965ddf7b3..458d6782520714c96c736603ed7d9467469f1c27 100644
--- a/chrome/common/extensions/chrome_manifest_url_handlers_unittest.cc
+++ b/chrome/common/extensions/chrome_manifest_url_handlers_unittest.cc
@@ -26,7 +26,7 @@ TEST(ChromeURLOverridesHandlerTest, TestFileMissing) {
base::ScopedTempDir dir;
ASSERT_TRUE(dir.CreateUniqueTempDir());
scoped_refptr<Extension> extension =
- Extension::Create(dir.path(), Manifest::INTERNAL, *manifest_value,
+ Extension::Create(dir.GetPath(), Manifest::INTERNAL, *manifest_value,
Extension::NO_FLAGS, std::string(), &error);
ASSERT_TRUE(extension);
EXPECT_FALSE(

Powered by Google App Engine
This is Rietveld 408576698