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

Unified Diff: third_party/WebKit/Source/core/editing/state_machines/StateMachineTestUtil.h

Issue 1857633002: Introduce ForwardGraphemeBoundaryStateMachine (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebasing Created 4 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/state_machines/StateMachineTestUtil.h
diff --git a/third_party/WebKit/Source/core/editing/state_machines/StateMachineTestUtil.h b/third_party/WebKit/Source/core/editing/state_machines/StateMachineTestUtil.h
index f3f20604d7e13282a71d81223c2aaf58f86d7fde..8ad1d34b121ff2301cfe1eb7a75702a9beddafc8 100644
--- a/third_party/WebKit/Source/core/editing/state_machines/StateMachineTestUtil.h
+++ b/third_party/WebKit/Source/core/editing/state_machines/StateMachineTestUtil.h
@@ -10,6 +10,7 @@
namespace blink {
class BackwardGraphemeBoundaryStateMachine;
+class ForwardGraphemeBoundaryStateMachine;
// Processes the |machine| with preceding/following code points.
// The result string represents the output sequence of the state machine.
@@ -26,4 +27,8 @@ std::string processSequenceBackward(
BackwardGraphemeBoundaryStateMachine*,
const std::vector<UChar32>& preceding);
+std::string processSequenceForward(
+ ForwardGraphemeBoundaryStateMachine*,
+ const std::vector<UChar32>& preceding,
+ const std::vector<UChar32>& following);
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698