Index: third_party/WebKit/Source/web/tests/WebFrameTest.cpp |
diff --git a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp |
index c6b01b61765d287303e80921c49a8f8542c73c73..bc284157b5b9210b215919ec7e2f2e7f4a77f6b4 100644 |
--- a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp |
+++ b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp |
@@ -6598,9 +6598,9 @@ class TextCheckClient : public WebTextCheckClient { |
Vector<WebTextCheckingResult> results; |
const int kMisspellingStartOffset = 1; |
const int kMisspellingLength = 8; |
- results.push_back(WebTextCheckingResult(kWebTextDecorationTypeSpelling, |
- kMisspellingStartOffset, |
- kMisspellingLength, WebString())); |
+ results.push_back(WebTextCheckingResult( |
+ kWebTextDecorationTypeSpelling, kMisspellingStartOffset, |
+ kMisspellingLength, WebVector<WebString>())); |
completion->DidFinishCheckingText(results); |
} |
int NumberOfTimesChecked() const { return number_of_times_checked_; } |