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

Unified Diff: chrome/browser/ui/zoom/zoom_controller_unittest.cc

Issue 372813003: Show zoom bubble for everything but an empty host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test expectation. Created 6 years, 5 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 | « chrome/browser/ui/zoom/zoom_controller.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/zoom/zoom_controller_unittest.cc
diff --git a/chrome/browser/ui/zoom/zoom_controller_unittest.cc b/chrome/browser/ui/zoom/zoom_controller_unittest.cc
index 2e36d74debfd1a6a9715c2ad56cf88e9b7ab8ccd..82e3372d503fd183d707d06370c74951a15b49b3 100644
--- a/chrome/browser/ui/zoom/zoom_controller_unittest.cc
+++ b/chrome/browser/ui/zoom/zoom_controller_unittest.cc
@@ -110,7 +110,7 @@ TEST_F(ZoomControllerTest, Observe_ZoomController) {
old_zoom_level,
old_zoom_level,
ZoomController::ZOOM_MODE_ISOLATED,
- true /* can_show_bubble */);
+ false /* can_show_bubble */);
EXPECT_CALL(zoom_observer_, OnZoomChanged(zoom_change_data1)).Times(1);
zoom_controller_->SetZoomMode(ZoomController::ZOOM_MODE_ISOLATED);
@@ -120,7 +120,7 @@ TEST_F(ZoomControllerTest, Observe_ZoomController) {
old_zoom_level,
new_zoom_level,
ZoomController::ZOOM_MODE_ISOLATED,
- true /* can_show_bubble */);
+ false /* can_show_bubble */);
EXPECT_CALL(zoom_observer_, OnZoomChanged(zoom_change_data2)).Times(1);
zoom_controller_->SetZoomLevel(new_zoom_level);
« no previous file with comments | « chrome/browser/ui/zoom/zoom_controller.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698