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

Unified Diff: blimp/net/blimp_message_output_buffer.cc

Issue 1933053003: Used oneof in blimp_message.proto (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: blimp/net/blimp_message_output_buffer.cc
diff --git a/blimp/net/blimp_message_output_buffer.cc b/blimp/net/blimp_message_output_buffer.cc
index b5c5ec5612b0f8c0a45fe4860160369540325fda..eec96c3618c929cbc672de2e20079f179a8f489d 100644
--- a/blimp/net/blimp_message_output_buffer.cc
+++ b/blimp/net/blimp_message_output_buffer.cc
@@ -136,7 +136,7 @@ void BlimpMessageOutputBuffer::WriteNextMessageIfReady() {
new BlimpMessage(*write_buffer_.front()->message));
DVLOG(3) << "Writing message (id="
Kevin M 2016/05/02 17:47:48 Just log *message_to_write to the stream
shaktisahu 2016/05/16 20:19:02 Done.
<< write_buffer_.front()->message->message_id()
- << ", type=" << message_to_write->type() << ")";
+ << ", type=" << message_to_write->feature_case() << ")";
output_processor_->ProcessMessage(std::move(message_to_write),
write_complete_cb_.callback());

Powered by Google App Engine
This is Rietveld 408576698