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 87e8e69a85da4382b4c2a7a70fa3321e54b60364..9aa8819c87af476f3710d1ce4ddfea57f017aa94 100644 |
--- a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp |
+++ b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp |
@@ -6600,9 +6600,9 @@ class TextCheckClient : public WebTextCheckClient { |
Vector<WebTextCheckingResult> results; |
const int kMisspellingStartOffset = 1; |
const int kMisspellingLength = 8; |
- results.push_back(WebTextCheckingResult( |
- kWebTextDecorationTypeSpelling, kMisspellingStartOffset, |
- kMisspellingLength, WebVector<WebString>())); |
+ results.push_back(WebTextCheckingResult(kWebTextDecorationTypeSpelling, |
+ kMisspellingStartOffset, |
+ kMisspellingLength, WebString())); |
completion->DidFinishCheckingText(results); |
} |
int NumberOfTimesChecked() const { return number_of_times_checked_; } |