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

Unified Diff: chrome/browser/spellchecker/feedback_sender.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/feedback_sender.h
diff --git a/chrome/browser/spellchecker/feedback_sender.h b/chrome/browser/spellchecker/feedback_sender.h
index 42d6aacc11ea1f9a956334a91c889a0a4a5315e7..c5cd8466b0cb52489a94cb5f5b0c708bafb28b92 100644
--- a/chrome/browser/spellchecker/feedback_sender.h
+++ b/chrome/browser/spellchecker/feedback_sender.h
@@ -31,9 +31,6 @@
#include "net/url_request/url_fetcher_delegate.h"
#include "url/gurl.h"
-class SpellCheckMarker;
-struct SpellCheckResult;
-
namespace net {
class URLFetcher;
class URLRequestContextGetter;
@@ -41,6 +38,9 @@ class URLRequestContextGetter;
namespace spellcheck {
+class SpellCheckMarker;
+struct SpellCheckResult;
+
namespace {
// Constants for the feedback field trial.
@@ -103,7 +103,7 @@ class FeedbackSender : public base::SupportsWeakPtr<FeedbackSender>,
void OnSpellcheckResults(int renderer_process_id,
const base::string16& text,
const std::vector<SpellCheckMarker>& markers,
- std::vector<SpellCheckResult>* results);
+ std::vector<spellcheck::SpellCheckResult>* results);
// Receives updated language and country code for feedback. Finalizes and
// sends out all of the feedback data.

Powered by Google App Engine
This is Rietveld 408576698