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

Unified Diff: ui/views/style/typography.cc

Issue 2734113006: "Bootstrap" a toolkit-views Typography spec. (Closed)
Patch Set: Shred Typography class, follow-up on some other things. fix compile. Created 3 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/views/style/typography.cc
diff --git a/ui/views/style/typography.cc b/ui/views/style/typography.cc
new file mode 100644
index 0000000000000000000000000000000000000000..561cd7e11d61710a8bd6215776dafc31c95a975f
--- /dev/null
+++ b/ui/views/style/typography.cc
@@ -0,0 +1,21 @@
+// 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 "ui/views/style/typography.h"
+
+namespace views {
+
+constexpr const TextContext::Value TextContext::DIALOG_TITLE;
+constexpr const TextContext::Value TextContext::CONTROL_LABEL;
+constexpr const TextContext::Value TextContext::FIELD;
+constexpr const TextContext::Value TextContext::BUTTON_TEXT;
+
+constexpr const TextStyle::Value TextStyle::PRIMARY;
+constexpr const TextStyle::Value TextStyle::DISABLED;
+constexpr const TextStyle::Value TextStyle::LINK;
+constexpr const TextStyle::Value TextStyle::ACTIVE_TAB;
+constexpr const TextStyle::Value TextStyle::INACTIVE_TAB;
+constexpr const TextStyle::Value TextStyle::HOVERED_TAB;
+
+} // namespace views

Powered by Google App Engine
This is Rietveld 408576698