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 |