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

Unified Diff: base/pickle.h

Issue 940783002: Cleanup: Remove wstring methods from base::Pickle. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 9 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
« no previous file with comments | « no previous file | base/pickle.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/pickle.h
diff --git a/base/pickle.h b/base/pickle.h
index b9b41267153e4f0f318440fef4304ce0462176b7..e6b9d812b494e11922eb3ed1ba80ac59211320e9 100644
--- a/base/pickle.h
+++ b/base/pickle.h
@@ -42,7 +42,6 @@ class BASE_EXPORT PickleIterator {
bool ReadString(std::string* result) WARN_UNUSED_RESULT;
// The StringPiece data will only be valid for the lifetime of the message.
bool ReadStringPiece(base::StringPiece* result) WARN_UNUSED_RESULT;
- bool ReadWString(std::wstring* result) WARN_UNUSED_RESULT;
bool ReadString16(base::string16* result) WARN_UNUSED_RESULT;
// The StringPiece16 data will only be valid for the lifetime of the message.
bool ReadStringPiece16(base::StringPiece16* result) WARN_UNUSED_RESULT;
@@ -201,7 +200,6 @@ class BASE_EXPORT Pickle {
return WritePOD(value);
}
bool WriteString(const base::StringPiece& value);
- bool WriteWString(const std::wstring& value);
bool WriteString16(const base::StringPiece16& value);
// "Data" is a blob with a length. When you read it out you will be given the
// length. See also WriteBytes.
« no previous file with comments | « no previous file | base/pickle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698