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

Unified Diff: blimp/common/logging_unittest.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 | « blimp/common/logging.cc ('k') | blimp/engine/app/blimp_content_main_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/common/logging_unittest.cc
diff --git a/blimp/common/logging_unittest.cc b/blimp/common/logging_unittest.cc
index 6dafa3b0ebc9fa8e1f66dc3b9bf5f7a2bddba48f..238aa59391dd2e4bb20cf4ca03a3fc3dd4138946 100644
--- a/blimp/common/logging_unittest.cc
+++ b/blimp/common/logging_unittest.cc
@@ -46,14 +46,15 @@ TEST_F(LoggingTest, Compositor) {
BlimpMessage base_msg;
base_msg.set_type(BlimpMessage::COMPOSITOR);
base_msg.set_target_tab_id(kTargetTab);
- VerifyLogOutput("type=COMPOSITOR target_tab_id=123", base_msg);
+ VerifyLogOutput("type=COMPOSITOR render_widget_id=0 target_tab_id=123",
+ base_msg);
}
TEST_F(LoggingTest, Input) {
BlimpMessage base_msg;
base_msg.set_type(BlimpMessage::INPUT);
base_msg.set_target_tab_id(kTargetTab);
- VerifyLogOutput("type=INPUT target_tab_id=123", base_msg);
+ VerifyLogOutput("type=INPUT render_widget_id=0 target_tab_id=123", base_msg);
}
TEST_F(LoggingTest, Navigation) {
« no previous file with comments | « blimp/common/logging.cc ('k') | blimp/engine/app/blimp_content_main_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698