| Index: third_party/WebKit/Source/core/testing/Internals.h
|
| diff --git a/third_party/WebKit/Source/core/testing/Internals.h b/third_party/WebKit/Source/core/testing/Internals.h
|
| index dd0c161d86d56fa261f54136f2d62e80c231a4cc..17cd2fdd1704b08e24984d48a431e004b60787b8 100644
|
| --- a/third_party/WebKit/Source/core/testing/Internals.h
|
| +++ b/third_party/WebKit/Source/core/testing/Internals.h
|
| @@ -33,6 +33,7 @@
|
| #include "bindings/core/v8/ScriptValue.h"
|
| #include "bindings/core/v8/ScriptWrappable.h"
|
| #include "core/css/CSSComputedStyleDeclaration.h"
|
| +#include "core/editing/markers/DocumentMarker.h"
|
| #include "core/page/scrolling/ScrollingCoordinator.h"
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/Forward.h"
|
| @@ -183,13 +184,19 @@ class Internals final : public GarbageCollected<Internals>,
|
| const String& markerType,
|
| unsigned index,
|
| ExceptionState&);
|
| - void addTextMatchMarker(const Range*, bool isActive);
|
| + void addTextMatchMarker(const Range*,
|
| + const String& matchStatus,
|
| + ExceptionState&);
|
| void addCompositionMarker(const Range*,
|
| const String& underlineColorValue,
|
| bool thick,
|
| const String& backgroundColorValue,
|
| ExceptionState&);
|
| - void setMarkersActive(Node*, unsigned startOffset, unsigned endOffset, bool);
|
| + void setMarkersActive(Node*,
|
| + unsigned startOffset,
|
| + unsigned endOffset,
|
| + const String& matchStatus,
|
| + ExceptionState&);
|
| void setMarkedTextMatchesAreHighlighted(Document*, bool);
|
|
|
| void setFrameViewPosition(Document*, long x, long y, ExceptionState&);
|
|
|