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

Side by Side Diff: chrome/browser/apps/window_controls_browsertest.cc

Issue 2227563003: Refactoring button field and its type (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix new instances Created 4 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/apps/app_browsertest_util.h" 5 #include "chrome/browser/apps/app_browsertest_util.h"
6 #include "chrome/browser/profiles/profile.h" 6 #include "chrome/browser/profiles/profile.h"
7 #include "components/infobars/core/infobar_delegate.h" 7 #include "components/infobars/core/infobar_delegate.h"
8 #include "content/public/test/browser_test_utils.h" 8 #include "content/public/test/browser_test_utils.h"
9 #include "extensions/browser/process_manager.h" 9 #include "extensions/browser/process_manager.h"
10 #include "extensions/common/switches.h" 10 #include "extensions/common/switches.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 // Send a left click on the "Close" button and wait for the close action 56 // Send a left click on the "Close" button and wait for the close action
57 // to happen. 57 // to happen.
58 ExtensionTestMessageListener window_closed("window-closed", false); 58 ExtensionTestMessageListener window_closed("window-closed", false);
59 59
60 // Send mouse click somewhere inside the [x] button 60 // Send mouse click somewhere inside the [x] button
61 const int controlOffset = 25; 61 const int controlOffset = 25;
62 int x = web_contents->GetContainerBounds().size().width() - controlOffset; 62 int x = web_contents->GetContainerBounds().size().width() - controlOffset;
63 int y = controlOffset; 63 int y = controlOffset;
64 content::SimulateMouseClickAt(web_contents, 64 content::SimulateMouseClickAt(web_contents,
65 0, 65 0,
66 blink::WebMouseEvent::ButtonLeft, 66 blink::WebMouseEvent::Button::Left,
67 gfx::Point(x, y)); 67 gfx::Point(x, y));
68 68
69 ASSERT_TRUE(window_closed.WaitUntilSatisfied()); 69 ASSERT_TRUE(window_closed.WaitUntilSatisfied());
70 } 70 }
OLDNEW
« no previous file with comments | « chrome/browser/apps/guest_view/web_view_interactive_browsertest.cc ('k') | chrome/browser/autofill/autofill_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698