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

Unified Diff: base/pickle.cc

Issue 1997153002: libchrome: Several upstreamable fixes from libchrome Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Addressed feedback Created 4 years, 7 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: base/pickle.cc
diff --git a/base/pickle.cc b/base/pickle.cc
index cfb316c13e56974abc7ffb98fa7e4693e40a7301..4ef167b089161b1b60696757e4c5a0e5dae0fc03 100644
--- a/base/pickle.cc
+++ b/base/pickle.cc
@@ -364,12 +364,12 @@ void Pickle::Reserve(size_t length) {
Resize(capacity_after_header_ * 2 + new_size);
}
-bool Pickle::WriteAttachment(scoped_refptr<Attachment> attachment) {
+bool Pickle::WriteAttachment(scoped_refptr<Attachment> /*attachment*/) {
return false;
}
-bool Pickle::ReadAttachment(base::PickleIterator* iter,
- scoped_refptr<Attachment>* attachment) const {
+bool Pickle::ReadAttachment(base::PickleIterator* /*iter*/,
+ scoped_refptr<Attachment>* /*attachment*/) const {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698