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

Unified Diff: storage/browser/fileapi/sandbox_prioritized_origin_database.cc

Issue 818833004: Remove deprecated methods from Pickle. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years 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
« no previous file with comments | « storage/browser/fileapi/sandbox_directory_database.cc ('k') | ui/base/clipboard/clipboard_test_template.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/fileapi/sandbox_prioritized_origin_database.cc
diff --git a/storage/browser/fileapi/sandbox_prioritized_origin_database.cc b/storage/browser/fileapi/sandbox_prioritized_origin_database.cc
index c55ad42bd710c736856946e24c44762c175e2c9a..9a64edf63ed7ed3a1059c40a38856eda42ba919b 100644
--- a/storage/browser/fileapi/sandbox_prioritized_origin_database.cc
+++ b/storage/browser/fileapi/sandbox_prioritized_origin_database.cc
@@ -44,7 +44,7 @@ bool ReadPrimaryOriginFile(const base::FilePath& path,
return false;
Pickle pickle(buffer.data(), buffer.size());
PickleIterator iter(pickle);
- return pickle.ReadString(&iter, origin) && !origin->empty();
+ return iter.ReadString(origin) && !origin->empty();
}
} // namespace
« no previous file with comments | « storage/browser/fileapi/sandbox_directory_database.cc ('k') | ui/base/clipboard/clipboard_test_template.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698