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

Unified Diff: ui/gfx/decorated_text.cc

Issue 2348143003: MacViews: Implement Force Touch/Mac dictionary lookup for Textfields. (Closed)
Patch Set: Address review. Created 4 years, 3 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/decorated_text.cc
diff --git a/ui/gfx/decorated_text.cc b/ui/gfx/decorated_text.cc
new file mode 100644
index 0000000000000000000000000000000000000000..22d43b458d02e1dfe79db809e55f9751f782c21c
--- /dev/null
+++ b/ui/gfx/decorated_text.cc
@@ -0,0 +1,23 @@
+// Copyright 2016 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/gfx/decorated_text.h"
+
+namespace gfx {
+
+DecoratedText::RangedAttribute::RangedAttribute(const gfx::Range& range,
+ const gfx::Font& font)
+ : range(range),
+ font(font),
+ weight(Font::Weight::INVALID),
+ underline(false),
+ italic(false),
+ strike(false),
+ diagonal_strike(false) {}
+
+DecoratedText::DecoratedText() {}
+
+DecoratedText::~DecoratedText() {}
+
+} // namespace gfx
« no previous file with comments | « ui/gfx/decorated_text.h ('k') | ui/gfx/render_text.h » ('j') | ui/gfx/render_text.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698