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

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

Issue 1920263003: Rename gfx::Display/Screen to display::Display/Screen in chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/popup_view_common.h
diff --git a/chrome/browser/ui/autofill/popup_view_common.h b/chrome/browser/ui/autofill/popup_view_common.h
index 42b236987e7bd75d91a48d7a14751aa2698194cf..f885a189b4ffb3481eb32901d1924974128ef0d9 100644
--- a/chrome/browser/ui/autofill/popup_view_common.h
+++ b/chrome/browser/ui/autofill/popup_view_common.h
@@ -14,6 +14,10 @@ class Point;
class Rect;
}
+namespace display {
+using Display = gfx::Display;
+}
+
namespace autofill {
// Provides utility functions for popup-style views.
@@ -31,8 +35,9 @@ class PopupViewCommon {
protected:
// A helper function to get the display closest to the given point (virtual
// for testing).
- virtual gfx::Display GetDisplayNearestPoint(const gfx::Point& point,
- gfx::NativeView container_view);
+ virtual display::Display GetDisplayNearestPoint(
+ const gfx::Point& point,
+ gfx::NativeView container_view);
};
} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698