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

Unified Diff: chrome/renderer/spellchecker/spellcheck_provider_test.h

Issue 1884583003: Create a spellcheck component that will allow any embedder to reuse common functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address reviewers' comments. Created 4 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: chrome/renderer/spellchecker/spellcheck_provider_test.h
diff --git a/chrome/renderer/spellchecker/spellcheck_provider_test.h b/chrome/renderer/spellchecker/spellcheck_provider_test.h
index 07630e49031b04a07b89a8517d28333020b243d6..83339b4b330e8c4a7e4dd8b8223f35a1ee7eb162 100644
--- a/chrome/renderer/spellchecker/spellcheck_provider_test.h
+++ b/chrome/renderer/spellchecker/spellcheck_provider_test.h
@@ -18,7 +18,7 @@
#include "third_party/WebKit/public/web/WebTextCheckingResult.h"
namespace IPC {
- class Message;
+class Message;
}
// A fake completion object for verification.
@@ -44,10 +44,11 @@ class TestingSpellCheckProvider : public SpellCheckProvider {
~TestingSpellCheckProvider() override;
bool Send(IPC::Message* message) override;
- void OnCallSpellingService(int route_id,
- int identifier,
- const base::string16& text,
- const std::vector<SpellCheckMarker>& markers);
+ void OnCallSpellingService(
+ int route_id,
+ int identifier,
+ const base::string16& text,
+ const std::vector<spellcheck::SpellCheckMarker>& markers);
void ResetResult();
base::string16 text_;

Powered by Google App Engine
This is Rietveld 408576698