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

Unified Diff: content/shell/test_runner/spell_check_client.cc

Issue 2799563002: Replace usage of WebVector::isEmpty with WebVector::empty().
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
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | media/blink/key_system_config_selector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/test_runner/spell_check_client.cc
diff --git a/content/shell/test_runner/spell_check_client.cc b/content/shell/test_runner/spell_check_client.cc
index adb7040f60912a2f6f995f4f8224be14bdfab746..aff9c417217e1d32552221ddd8529b0e6a0f501b 100644
--- a/content/shell/test_runner/spell_check_client.cc
+++ b/content/shell/test_runner/spell_check_client.cc
@@ -115,7 +115,7 @@ void SpellCheckClient::FinishLastTextCheck() {
results.push_back(blink::WebTextCheckingResult(
blink::WebTextDecorationTypeSpelling, offset + misspelled_position,
misspelled_length,
- suggestions.isEmpty() ? blink::WebString() : suggestions[0]));
+ suggestions.empty() ? blink::WebString() : suggestions[0]));
text = text.substr(misspelled_position + misspelled_length);
offset += misspelled_position + misspelled_length;
}
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | media/blink/key_system_config_selector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698