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

Unified Diff: cc/trees/remote_channel_main.cc

Issue 1840843005: blimp: Add logging for compositor and render widget feature. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed a test. Created 4 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 | « cc/trees/remote_channel_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/remote_channel_main.cc
diff --git a/cc/trees/remote_channel_main.cc b/cc/trees/remote_channel_main.cc
index 3aea001f92ff4e9ed8d70aa8923eb5d0abc6661c..a5e9483a67e0c9b7b226f76a35d9264fd2862d85 100644
--- a/cc/trees/remote_channel_main.cc
+++ b/cc/trees/remote_channel_main.cc
@@ -83,6 +83,7 @@ void RemoteChannelMain::SetDeferCommitsOnImpl(bool defer_commits) {
to_impl_proto->mutable_defer_commits_message();
defer_commits_message->set_defer_commits(defer_commits);
+ VLOG(1) << "Sending defer commits: " << defer_commits << " to client.";
SendMessageProto(proto);
}
@@ -118,6 +119,7 @@ void RemoteChannelMain::SetNeedsRedrawOnImpl(const gfx::Rect& damage_rect) {
to_impl_proto->mutable_set_needs_redraw_message();
RectToProto(damage_rect, set_needs_redraw_message->mutable_damaged_rect());
+ VLOG(1) << "Sending redraw request to client.";
SendMessageProto(proto);
// The client will not inform us when the frame buffers are swapped.
@@ -132,6 +134,7 @@ void RemoteChannelMain::SetNeedsCommitOnImpl() {
to_impl_proto->set_message_type(
proto::CompositorMessageToImpl::SET_NEEDS_COMMIT);
+ VLOG(1) << "Sending commit request to client.";
SendMessageProto(proto);
}
@@ -147,6 +150,8 @@ void RemoteChannelMain::BeginMainFrameAbortedOnImpl(
CommitEarlyOutReasonToProtobuf(
reason, begin_main_frame_aborted_message->mutable_reason());
+ VLOG(1) << "Sending BeginMainFrameAborted message to client with reason: "
+ << CommitEarlyOutReasonToString(reason);
SendMessageProto(proto);
}
@@ -163,6 +168,8 @@ void RemoteChannelMain::StartCommitOnImpl(
layer_tree_host->ToProtobufForCommit(
start_commit_message->mutable_layer_tree_host());
+ VLOG(1) << "Sending commit message to client. Commit bytes size: "
+ << proto.ByteSize();
SendMessageProto(proto);
// In order to avoid incurring the overhead for the client to send us a
@@ -197,6 +204,7 @@ void RemoteChannelMain::SynchronouslyInitializeImpl(
initialize_impl_proto->mutable_layer_tree_settings();
layer_tree_host->settings().ToProtobuf(settings_proto);
+ VLOG(1) << "Sending initialize message to client";
SendMessageProto(proto);
initialized_ = true;
}
@@ -207,6 +215,7 @@ void RemoteChannelMain::SynchronouslyCloseImpl() {
proto::CompositorMessageToImpl* to_impl_proto = proto.mutable_to_impl();
to_impl_proto->set_message_type(proto::CompositorMessageToImpl::CLOSE_IMPL);
+ VLOG(1) << "Sending close message to client.";
SendMessageProto(proto);
initialized_ = false;
}
@@ -225,6 +234,7 @@ void RemoteChannelMain::HandleProto(
NOTIMPLEMENTED() << "Ignoring message proto of unknown type";
break;
case proto::CompositorMessageToMain::BEGIN_MAIN_FRAME: {
+ VLOG(1) << "Received BeginMainFrame request from client.";
const proto::BeginMainFrame& begin_main_frame_message =
proto.begin_main_frame_message();
scoped_ptr<BeginMainFrameAndCommitState> begin_main_frame_state;
« no previous file with comments | « cc/trees/remote_channel_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698