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 7d90d5eebb902e2152207158bfe350be40685167..280b8e6a6229957bb6dedba3df4e0a156e5375cc 100644 |
--- a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp |
+++ b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp |
@@ -6499,9 +6499,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_; } |