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

Unified Diff: content/browser/net/quota_policy_cookie_store_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/net/quota_policy_cookie_store_unittest.cc
diff --git a/content/browser/net/quota_policy_cookie_store_unittest.cc b/content/browser/net/quota_policy_cookie_store_unittest.cc
index 73f8366a179bb8c4f200ad82e268ec9167fd9908..436728eb383eb0b5efc99a51e2f11b164b50bbbd 100644
--- a/content/browser/net/quota_policy_cookie_store_unittest.cc
+++ b/content/browser/net/quota_policy_cookie_store_unittest.cc
@@ -84,10 +84,8 @@ class QuotaPolicyCookieStoreTest : public testing::Test {
CanonicalCookieVector* cookies) {
scoped_refptr<net::SQLitePersistentCookieStore> sqlite_store(
new net::SQLitePersistentCookieStore(
- temp_dir_.path().Append(kTestCookiesFilename),
- client_task_runner(),
- background_task_runner(),
- true, nullptr));
+ temp_dir_.GetPath().Append(kTestCookiesFilename),
+ client_task_runner(), background_task_runner(), true, nullptr));
store_ = new QuotaPolicyCookieStore(sqlite_store.get(), storage_policy);
Load(cookies);
}

Powered by Google App Engine
This is Rietveld 408576698