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

Unified Diff: chrome/browser/extensions/startup_helper.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/startup_helper.cc
diff --git a/chrome/browser/extensions/startup_helper.cc b/chrome/browser/extensions/startup_helper.cc
index b4e9a61829053fd1899dd86a69cb7b720b796c76..af77e585410f7bd913e6701ae0fbf4619483e43c 100644
--- a/chrome/browser/extensions/startup_helper.cc
+++ b/chrome/browser/extensions/startup_helper.cc
@@ -179,7 +179,7 @@ bool StartupHelper::ValidateCrx(const base::CommandLine& cmd_line,
base::RunLoop run_loop;
CRXFileInfo file(path);
scoped_refptr<ValidateCrxHelper> helper(
- new ValidateCrxHelper(file, temp_dir.path(), &run_loop));
+ new ValidateCrxHelper(file, temp_dir.GetPath(), &run_loop));
helper->Start();
run_loop.Run();

Powered by Google App Engine
This is Rietveld 408576698