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

Side by Side Diff: chrome/browser/ui/views/autofill/password_generation_popup_view_tester_views.h

Issue 628773002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[t-v]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 #ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_TESTER_V IEWS_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_TESTER_V IEWS_H_
6 #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_TESTER_V IEWS_H_ 6 #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_TESTER_V IEWS_H_
7 7
8 #include "chrome/browser/ui/autofill/password_generation_popup_view_tester.h" 8 #include "chrome/browser/ui/autofill/password_generation_popup_view_tester.h"
9 9
10 namespace autofill { 10 namespace autofill {
11 11
12 class PasswordGenerationPopupViewViews; 12 class PasswordGenerationPopupViewViews;
13 13
14 class PasswordGenerationPopupViewTesterViews : 14 class PasswordGenerationPopupViewTesterViews :
15 public PasswordGenerationPopupViewTester { 15 public PasswordGenerationPopupViewTester {
16 public: 16 public:
17 explicit PasswordGenerationPopupViewTesterViews( 17 explicit PasswordGenerationPopupViewTesterViews(
18 PasswordGenerationPopupViewViews* view); 18 PasswordGenerationPopupViewViews* view);
19 virtual ~PasswordGenerationPopupViewTesterViews(); 19 virtual ~PasswordGenerationPopupViewTesterViews();
20 20
21 virtual void SimulateMouseMovementAt(const gfx::Point& point) OVERRIDE; 21 virtual void SimulateMouseMovementAt(const gfx::Point& point) override;
22 22
23 private: 23 private:
24 // Weak reference 24 // Weak reference
25 PasswordGenerationPopupViewViews* view_; 25 PasswordGenerationPopupViewViews* view_;
26 26
27 DISALLOW_COPY_AND_ASSIGN(PasswordGenerationPopupViewTesterViews); 27 DISALLOW_COPY_AND_ASSIGN(PasswordGenerationPopupViewTesterViews);
28 }; 28 };
29 29
30 } // namespace autofill 30 } // namespace autofill
31 31
32 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_TESTE R_VIEWS_H_ 32 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_TESTE R_VIEWS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698