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

Side by Side Diff: chrome/browser/ui/views/autofill/autofill_popup_base_view_browsertest.cc

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/ui/views/autofill/autofill_popup_base_view.h" 5 #include "chrome/browser/ui/views/autofill/autofill_popup_base_view.h"
6 6
7 #include "chrome/browser/ui/autofill/autofill_popup_view_delegate.h" 7 #include "chrome/browser/ui/autofill/autofill_popup_view_delegate.h"
8 #include "chrome/browser/ui/browser.h" 8 #include "chrome/browser/ui/browser.h"
9 #include "chrome/browser/ui/browser_window.h" 9 #include "chrome/browser/ui/browser_window.h"
10 #include "chrome/browser/ui/tabs/tab_strip_model.h" 10 #include "chrome/browser/ui/tabs/tab_strip_model.h"
(...skipping 23 matching lines...) Expand all
34 MOCK_METHOD0(container_view, gfx::NativeView()); 34 MOCK_METHOD0(container_view, gfx::NativeView());
35 MOCK_CONST_METHOD0(element_bounds, gfx::RectF&()); 35 MOCK_CONST_METHOD0(element_bounds, gfx::RectF&());
36 MOCK_CONST_METHOD0(IsRTL, bool()); 36 MOCK_CONST_METHOD0(IsRTL, bool());
37 }; 37 };
38 38
39 } // namespace 39 } // namespace
40 40
41 class AutofillPopupBaseViewTest : public InProcessBrowserTest { 41 class AutofillPopupBaseViewTest : public InProcessBrowserTest {
42 public: 42 public:
43 AutofillPopupBaseViewTest() {} 43 AutofillPopupBaseViewTest() {}
44 virtual ~AutofillPopupBaseViewTest() {} 44 ~AutofillPopupBaseViewTest() override {}
45 45
46 virtual void SetUpOnMainThread() override { 46 void SetUpOnMainThread() override {
47 gfx::NativeView native_view = 47 gfx::NativeView native_view =
48 browser()->tab_strip_model()->GetActiveWebContents()->GetNativeView(); 48 browser()->tab_strip_model()->GetActiveWebContents()->GetNativeView();
49 EXPECT_CALL(mock_delegate_, container_view()) 49 EXPECT_CALL(mock_delegate_, container_view())
50 .WillRepeatedly(Return(native_view)); 50 .WillRepeatedly(Return(native_view));
51 EXPECT_CALL(mock_delegate_, ViewDestroyed()); 51 EXPECT_CALL(mock_delegate_, ViewDestroyed());
52 52
53 view_ = new AutofillPopupBaseView( 53 view_ = new AutofillPopupBaseView(
54 &mock_delegate_, 54 &mock_delegate_,
55 views::Widget::GetWidgetForNativeWindow( 55 views::Widget::GetWidgetForNativeWindow(
56 browser()->window()->GetNativeWindow())->GetFocusManager()); 56 browser()->window()->GetNativeWindow())->GetFocusManager());
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 138
139 ShowView(); 139 ShowView();
140 140
141 gfx::Point display_point = 141 gfx::Point display_point =
142 static_cast<views::View*>(view_)->GetBoundsInScreen().origin(); 142 static_cast<views::View*>(view_)->GetBoundsInScreen().origin();
143 gfx::Point expected_point = bounds.origin(); 143 gfx::Point expected_point = bounds.origin();
144 EXPECT_EQ(expected_point, display_point); 144 EXPECT_EQ(expected_point, display_point);
145 } 145 }
146 146
147 } // namespace autofill 147 } // namespace autofill
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/autofill/autofill_dialog_views_unittest.cc ('k') | chrome/browser/ui/views/chrome_views_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698