| 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
|
|
|