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

Unified Diff: ui/gfx/geometry/insets_f.h

Issue 1800973002: MD text buttons - implement focus ring. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: ui/gfx/geometry/insets_f.h
diff --git a/ui/gfx/geometry/insets_f.h b/ui/gfx/geometry/insets_f.h
index f159a7458b4578348b03c5a7393b50b6ffe563dc..7ff2cec2e28f26ca7d390360f6d739b46153ab17 100644
--- a/ui/gfx/geometry/insets_f.h
+++ b/ui/gfx/geometry/insets_f.h
@@ -15,7 +15,10 @@ namespace gfx {
class GFX_EXPORT InsetsF {
public:
InsetsF();
+ explicit InsetsF(float all);
+ InsetsF(float vertical, float horizontal);
InsetsF(float top, float left, float bottom, float right);
+
~InsetsF();
float top() const { return top_; }

Powered by Google App Engine
This is Rietveld 408576698