Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / views / autofill / password_generation_popup_view_tester_views.h
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_TESTER_VIEWS_H_
6 #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_TESTER_VIEWS_H_
7
8 #include "chrome/browser/ui/autofill/password_generation_popup_view_tester.h"
9
10 namespace autofill {
11
12 class PasswordGenerationPopupViewViews;
13
14 class PasswordGenerationPopupViewTesterViews :
15       public PasswordGenerationPopupViewTester {
16  public:
17   explicit PasswordGenerationPopupViewTesterViews(
18       PasswordGenerationPopupViewViews* view);
19   virtual ~PasswordGenerationPopupViewTesterViews();
20
21   virtual void SimulateMouseMovementAt(const gfx::Point& point) OVERRIDE;
22
23  private:
24   // Weak reference
25   PasswordGenerationPopupViewViews* view_;
26
27   DISALLOW_COPY_AND_ASSIGN(PasswordGenerationPopupViewTesterViews);
28 };
29
30 }  // namespace autofill
31
32 #endif  // CHROME_BROWSER_UI_VIEWS_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_TESTER_VIEWS_H_