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

Unified Diff: content/child/shared_memory_data_consumer_handle.cc

Issue 2540023003: Dispatch encoded_data_length separately in content/child (Closed)
Patch Set: fix Created 4 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
Index: content/child/shared_memory_data_consumer_handle.cc
diff --git a/content/child/shared_memory_data_consumer_handle.cc b/content/child/shared_memory_data_consumer_handle.cc
index 091eb50c7de0cd92ba49d58a78fd428b92135ff2..cff0b116e5da8e591b5b89d35930e6408c8ec180 100644
--- a/content/child/shared_memory_data_consumer_handle.cc
+++ b/content/child/shared_memory_data_consumer_handle.cc
@@ -37,9 +37,6 @@ class DelegateThreadSafeReceivedData final
const char* payload() const override { return data_->payload(); }
int length() const override { return data_->length(); }
- int encoded_data_length() const override {
- return data_->encoded_data_length();
- }
private:
std::unique_ptr<RequestPeer::ReceivedData> data_;

Powered by Google App Engine
This is Rietveld 408576698