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

Unified Diff: ui/gfx/decorated_text.cc

Issue 2348143003: MacViews: Implement Force Touch/Mac dictionary lookup for Textfields. (Closed)
Patch Set: Address nits. Created 4 years, 2 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
« no previous file with comments | « ui/gfx/decorated_text.h ('k') | ui/gfx/render_text.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..8c7a3299bd9323d613a6b6889ad11048f27b243a
--- /dev/null
+++ b/ui/gfx/decorated_text.cc
@@ -0,0 +1,17 @@
+// 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), 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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698