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

Unified Diff: content/browser/site_per_process_browsertest.cc

Issue 2346843002: Fix CrossProcessMouseEnterAndLeaveTest on Mac (Closed)
Patch Set: Created 4 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/site_per_process_browsertest.cc
diff --git a/content/browser/site_per_process_browsertest.cc b/content/browser/site_per_process_browsertest.cc
index d2b7fb214392b681fc0b5d28866f984eaad98829..e825d067482393c12039f9ac8df843caec52d7b0 100644
--- a/content/browser/site_per_process_browsertest.cc
+++ b/content/browser/site_per_process_browsertest.cc
@@ -1365,10 +1365,10 @@ IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest,
d_node->current_frame_host()->GetRenderWidgetHost());
gfx::Point point_in_a_frame(2, 2);
- gfx::Point point_in_b_frame(rwhv_b->GetViewBounds().x() + 2,
- rwhv_b->GetViewBounds().y() + 2);
- gfx::Point point_in_d_frame(rwhv_d->GetViewBounds().x() + 2,
- rwhv_d->GetViewBounds().y() + 2);
+ gfx::Point point_in_b_frame(rwhv_b->GetViewBounds().x(),
+ rwhv_b->GetViewBounds().y());
+ gfx::Point point_in_d_frame(rwhv_d->GetViewBounds().x(),
+ rwhv_d->GetViewBounds().y());
blink::WebMouseEvent mouse_event;
mouse_event.type = blink::WebInputEvent::MouseMove;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698