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

Unified Diff: third_party/WebKit/Source/core/editing/markers/TextMatchMarker.cpp

Issue 2805553003: DocumentMarkerList refactor as an interface (Closed)
Patch Set: Respond to comments, fill in unimplemented methods Created 3 years, 8 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: third_party/WebKit/Source/core/editing/markers/TextMatchMarker.cpp
diff --git a/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.cpp b/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..c3fcb2af16277c5407bd87ce106683e32ce4e754
--- /dev/null
+++ b/third_party/WebKit/Source/core/editing/markers/TextMatchMarker.cpp
@@ -0,0 +1,42 @@
+// 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 "core/editing/markers/TextMatchMarker.h"
+
+#include "core/dom/Range.h"
+
+namespace blink {
+
+TextMatchMarker::TextMatchMarker(unsigned startOffset,
+ unsigned endOffset,
+ DocumentMarker::MatchStatus matchStatus)
+ : DocumentMarker(startOffset, endOffset, matchStatus),
+ m_state(State::kInvalid) {}
+
+void TextMatchMarker::updateRenderedRectIfNeeded(const Node& node) {
+ if (!isValid())
+ updateRenderedRect(node);
+}
+
+void TextMatchMarker::updateRenderedRect(const Node& node) {
+ Range* range = Range::create(node.document());
+ // The offsets of the marker may be out-dated, so check for exceptions.
+ DummyExceptionStateForTesting exceptionState;
+ range->setStart(&const_cast<Node&>(node), startOffset(), exceptionState);
+ if (!exceptionState.hadException()) {
+ range->setEnd(&const_cast<Node&>(node), endOffset(),
+ IGNORE_EXCEPTION_FOR_TESTING);
+ }
+
+ if (!exceptionState.hadException()) {
+ // TODO(yosin): Once we have a |EphemeralRange| version of
+ // |boundingBox()|, we should use it instead of |Range| version.
+ setRenderedRect(LayoutRect(range->boundingBox()));
+ } else {
+ nullifyRenderedRect();
+ }
+ range->dispose();
+}
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698