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
10namespace autofill {
11
12class PasswordGenerationPopupViewViews;
13
14class 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_
33