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

Unified Diff: ash/public/cpp/ash_typography.cc

Issue 2801583002: Use views::style for buttons, bootstrap ash_typography to do so. (Closed)
Patch Set: placate gn check. new_avatar_button now just avatar_button Created 3 years, 7 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: ash/public/cpp/ash_typography.cc
diff --git a/ash/public/cpp/ash_typography.cc b/ash/public/cpp/ash_typography.cc
new file mode 100644
index 0000000000000000000000000000000000000000..ff671025e10db55b473cb1d35252ac5f65e0e29c
--- /dev/null
+++ b/ash/public/cpp/ash_typography.cc
@@ -0,0 +1,23 @@
+// Copyright 2017 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.
+
+#include "ash/public/cpp/ash_typography.h"
+
+namespace ash {
+
+void ApplyAshFontStyles(int context,
+ int style,
+ int* size_delta,
+ gfx::Font::Weight* font_weight) {
+ switch (context) {
+ case CONTEXT_LAUNCHER_BUTTON:
+ *size_delta = 2;
+ break;
+ case CONTEXT_TOAST_OVERLAY:
+ *size_delta = 3;
+ break;
+ }
+}
+
+} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698