blob: a290cd0f4385f4475c8c1a3e7c96167902098253 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_PASSWORDS_PASSWORD_GENERATION_POPUP_VIEW_TESTER_H_
#define CHROME_BROWSER_UI_PASSWORDS_PASSWORD_GENERATION_POPUP_VIEW_TESTER_H_
#include <memory>
#include "ui/gfx/geometry/point.h"
namespace autofill {
class PasswordGenerationPopupView;
// Helps test a PasswordGenerationPopupView.
class PasswordGenerationPopupViewTester {
public:
static std::unique_ptr<PasswordGenerationPopupViewTester> For(
PasswordGenerationPopupView* view);
virtual ~PasswordGenerationPopupViewTester() {}
virtual void SimulateMouseMovementAt(const gfx::Point& point) = 0;
};
} // namespace autofill
#endif // CHROME_BROWSER_UI_PASSWORDS_PASSWORD_GENERATION_POPUP_VIEW_TESTER_H_