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

Unified Diff: chrome/browser/extensions/test_extension_dir.cc

Issue 2314363002: extensions: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: 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/extensions/test_extension_dir.cc
diff --git a/chrome/browser/extensions/test_extension_dir.cc b/chrome/browser/extensions/test_extension_dir.cc
index ec6a5280d7ec9e54fad73eecf3ea604db9bec782..f4418e72341ab7b5d526cfe75993118bd62bc691 100644
--- a/chrome/browser/extensions/test_extension_dir.cc
+++ b/chrome/browser/extensions/test_extension_dir.cc
@@ -35,10 +35,9 @@ void TestExtensionDir::WriteManifestWithSingleQuotes(
void TestExtensionDir::WriteFile(const base::FilePath::StringType& filename,
base::StringPiece contents) {
- EXPECT_EQ(
- base::checked_cast<int>(contents.size()),
- base::WriteFile(
- dir_.path().Append(filename), contents.data(), contents.size()));
+ EXPECT_EQ(base::checked_cast<int>(contents.size()),
+ base::WriteFile(dir_.GetPath().Append(filename), contents.data(),
+ contents.size()));
}
// This function packs the extension into a .crx, and returns the path to that
@@ -46,18 +45,15 @@ void TestExtensionDir::WriteFile(const base::FilePath::StringType& filename,
base::FilePath TestExtensionDir::Pack() {
ExtensionCreator creator;
base::FilePath crx_path =
- crx_dir_.path().Append(FILE_PATH_LITERAL("ext.crx"));
+ crx_dir_.GetPath().Append(FILE_PATH_LITERAL("ext.crx"));
base::FilePath pem_path =
- crx_dir_.path().Append(FILE_PATH_LITERAL("ext.pem"));
+ crx_dir_.GetPath().Append(FILE_PATH_LITERAL("ext.pem"));
base::FilePath pem_in_path, pem_out_path;
if (base::PathExists(pem_path))
pem_in_path = pem_path;
else
pem_out_path = pem_path;
- if (!creator.Run(dir_.path(),
- crx_path,
- pem_in_path,
- pem_out_path,
+ if (!creator.Run(dir_.GetPath(), crx_path, pem_in_path, pem_out_path,
ExtensionCreator::kOverwriteCRX)) {
ADD_FAILURE()
<< "ExtensionCreator::Run() failed: " << creator.error_message();

Powered by Google App Engine
This is Rietveld 408576698