Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7443)

Unified Diff: chrome/browser/ui/autofill/test_popup_controller_common.h

Issue 1570783003: [Autofill] Move functions from the AutofillPopupController to AutofillPopupLayoutModel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: AutofillPopupViewHelper Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/autofill/test_popup_controller_common.h
diff --git a/chrome/browser/ui/autofill/test_popup_controller_common.h b/chrome/browser/ui/autofill/test_popup_controller_common.h
deleted file mode 100644
index 716e65d3b403b2db15c18c63cd9727b765a3a195..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/autofill/test_popup_controller_common.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// 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 "base/macros.h"
-#include "ui/gfx/display.h"
-
-namespace autofill {
-
-class TestPopupControllerCommon : public PopupControllerCommon {
- public:
- TestPopupControllerCommon(const gfx::RectF& element_bounds,
- base::i18n::TextDirection direction);
- ~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_

Powered by Google App Engine
This is Rietveld 408576698