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

Unified Diff: chrome/browser/spellchecker/spellcheck_platform.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/browser/spellchecker/spellcheck_platform.h
diff --git a/chrome/browser/spellchecker/spellcheck_platform.h b/chrome/browser/spellchecker/spellcheck_platform.h
index ed8d587462a6706660e46589043254ee89679b17..7d75243dd9a07a399c510e0c294a5abe2c802ea0 100644
--- a/chrome/browser/spellchecker/spellcheck_platform.h
+++ b/chrome/browser/spellchecker/spellcheck_platform.h
@@ -14,7 +14,9 @@
#include "base/callback_forward.h"
#include "base/strings/string16.h"
+namespace spellcheck {
struct SpellCheckResult;
+}
namespace content {
class BrowserMessageFilter;
@@ -23,7 +25,7 @@ class BrowserMessageFilter;
namespace spellcheck_platform {
typedef base::Callback<void(
- const std::vector<SpellCheckResult>& /* results */)>
+ const std::vector<spellcheck::SpellCheckResult>& /* results */)>
TextCheckCompleteCallback;
// Get the languages supported by the platform spellchecker and store them in

Powered by Google App Engine
This is Rietveld 408576698