blob: 2bd298226e5db60adc1674e467c89cdd4e6bbe24 [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_AUTOFILL_TEST_POPUP_CONTROLLER_COMMON_H_
#define CHROME_BROWSER_UI_AUTOFILL_TEST_POPUP_CONTROLLER_COMMON_H_
#include "chrome/browser/ui/autofill/popup_controller_common.h"
#include "ui/gfx/display.h"
namespace autofill {
class TestPopupControllerCommon : public PopupControllerCommon {
public:
explicit TestPopupControllerCommon(const gfx::RectF& element_bounds);
~TestPopupControllerCommon() override;
void set_display(const gfx::Display& display) { display_ = display; }
protected:
// Returns |display_|
gfx::Display GetDisplayNearestPoint(const gfx::Point& point) const override;
private:
gfx::Display display_;
DISALLOW_COPY_AND_ASSIGN(TestPopupControllerCommon);
};
} // namespace autofill
#endif // CHROME_BROWSER_UI_AUTOFILL_TEST_POPUP_CONTROLLER_COMMON_H_