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

Unified Diff: content/browser/indexed_db/indexed_db_quota_client_unittest.cc

Issue 671873004: Migrates legacy packaged app data when it's upgraded to a platform app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Empty patch trying to unwedge try server Created 6 years, 2 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/indexed_db/indexed_db_quota_client_unittest.cc
diff --git a/content/browser/indexed_db/indexed_db_quota_client_unittest.cc b/content/browser/indexed_db/indexed_db_quota_client_unittest.cc
index f0befd24666f6d1136a8b84854e6dbf29ce92631..baa76fc66d16de703b9d5f03deec5a2d8dd2fd7e 100644
--- a/content/browser/indexed_db/indexed_db_quota_client_unittest.cc
+++ b/content/browser/indexed_db/indexed_db_quota_client_unittest.cc
@@ -138,8 +138,7 @@ class IndexedDBQuotaClientTest : public testing::Test {
}
void AddFakeIndexedDB(const GURL& origin, int size) {
- base::FilePath file_path_origin = idb_context()->GetFilePathForTesting(
- storage::GetIdentifierFromOrigin(origin));
+ base::FilePath file_path_origin = idb_context()->GetFilePath(origin);
if (!base::CreateDirectory(file_path_origin)) {
LOG(ERROR) << "failed to base::CreateDirectory "
<< file_path_origin.value();

Powered by Google App Engine
This is Rietveld 408576698