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

Unified Diff: chrome/browser/chromeos/app_mode/kiosk_app_data.cc

Issue 2318023002: //chrome/browser/chromeos: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Fix FileManagerBrowsertest 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/chromeos/app_mode/kiosk_app_data.cc
diff --git a/chrome/browser/chromeos/app_mode/kiosk_app_data.cc b/chrome/browser/chromeos/app_mode/kiosk_app_data.cc
index b5bb0fb6d69a82d53170444c89d505758e6485b7..c03fba580b4724caddcc174b39ae8cc0bcd06964 100644
--- a/chrome/browser/chromeos/app_mode/kiosk_app_data.cc
+++ b/chrome/browser/chromeos/app_mode/kiosk_app_data.cc
@@ -162,7 +162,7 @@ class KioskAppData::CrxLoader : public extensions::SandboxedUnpackerClient {
scoped_refptr<extensions::SandboxedUnpacker> unpacker(
new extensions::SandboxedUnpacker(
extensions::Manifest::INTERNAL, extensions::Extension::NO_FLAGS,
- temp_dir_.path(), task_runner_.get(), this));
+ temp_dir_.GetPath(), task_runner_.get(), this));
unpacker->StartWithCrx(extensions::CRXFileInfo(crx_file_));
}
@@ -171,7 +171,7 @@ class KioskAppData::CrxLoader : public extensions::SandboxedUnpackerClient {
if (!temp_dir_.Delete()) {
LOG(WARNING) << "Can not delete temp directory at "
- << temp_dir_.path().value();
+ << temp_dir_.GetPath().value();
}
BrowserThread::PostTask(

Powered by Google App Engine
This is Rietveld 408576698