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 |