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

Unified Diff: content/browser/fileapi/plugin_private_file_system_backend_unittest.cc

Issue 2316043002: //content: Change ScopedTempDir::path() to GetPath() (Closed)
Patch Set: Just 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: content/browser/fileapi/plugin_private_file_system_backend_unittest.cc
diff --git a/content/browser/fileapi/plugin_private_file_system_backend_unittest.cc b/content/browser/fileapi/plugin_private_file_system_backend_unittest.cc
index d7648216fa07908ff1408f065aa2f89c9fb7660d..7cf4370af90dac62eaffb3e32450f26647b85889 100644
--- a/content/browser/fileapi/plugin_private_file_system_backend_unittest.cc
+++ b/content/browser/fileapi/plugin_private_file_system_backend_unittest.cc
@@ -50,9 +50,8 @@ class PluginPrivateFileSystemBackendTest : public testing::Test {
protected:
void SetUp() override {
ASSERT_TRUE(data_dir_.CreateUniqueTempDir());
- context_ = CreateFileSystemContextForTesting(
- NULL /* quota_manager_proxy */,
- data_dir_.path());
+ context_ = CreateFileSystemContextForTesting(NULL /* quota_manager_proxy */,
+ data_dir_.GetPath());
}
FileSystemURL CreateURL(const GURL& root_url, const std::string& relative) {

Powered by Google App Engine
This is Rietveld 408576698