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

Unified Diff: third_party/WebKit/Source/core/editing/iterators/TextSearcherICU.h

Issue 2806433002: Avoid duplicate functions/code in core/editing: MatchResultICU (Closed)
Patch Set: 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/iterators/TextSearcherICU.h
diff --git a/third_party/WebKit/Source/core/editing/iterators/TextSearcherICU.h b/third_party/WebKit/Source/core/editing/iterators/TextSearcherICU.h
index 3e99c9d8213517d24bb8d8d46f35f361ec647d66..07fc4169e0b307acb256705bdb06283905d9d661 100644
--- a/third_party/WebKit/Source/core/editing/iterators/TextSearcherICU.h
+++ b/third_party/WebKit/Source/core/editing/iterators/TextSearcherICU.h
@@ -13,7 +13,7 @@ struct UStringSearch;
namespace blink {
-struct CORE_EXPORT MatchResult {
+struct CORE_EXPORT MatchResultICU {
size_t start;
size_t length;
};
@@ -28,7 +28,7 @@ class CORE_EXPORT TextSearcherICU {
void setPattern(const StringView& pattern, bool sensitive);
void setText(const UChar* text, size_t length);
void setOffset(size_t);
- bool nextMatchResult(MatchResult&);
+ bool nextMatchResult(MatchResultICU&);
private:
void setPattern(const UChar* pattern, size_t length);

Powered by Google App Engine
This is Rietveld 408576698