| OLD | NEW |
| 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_ |
| OLD | NEW |