| Index: chrome/browser/spellchecker/spelling_service_client.h
|
| diff --git a/chrome/browser/spellchecker/spelling_service_client.h b/chrome/browser/spellchecker/spelling_service_client.h
|
| index e96c80e1ac9c3d4491be48a201bbc5ad627bf8df..1fb9764c02e891321989e8ad07ff0d09d879860f 100644
|
| --- a/chrome/browser/spellchecker/spelling_service_client.h
|
| +++ b/chrome/browser/spellchecker/spelling_service_client.h
|
| @@ -17,7 +17,10 @@
|
|
|
| class GURL;
|
| class TextCheckClientDelegate;
|
| +
|
| +namespace spellcheck {
|
| struct SpellCheckResult;
|
| +}
|
|
|
| namespace content {
|
| class BrowserContext;
|
| @@ -72,7 +75,7 @@ class SpellingServiceClient : public net::URLFetcherDelegate {
|
| typedef base::Callback<void(
|
| bool /* success */,
|
| const base::string16& /* text */,
|
| - const std::vector<SpellCheckResult>& /* results */)>
|
| + const std::vector<spellcheck::SpellCheckResult>& /* results */)>
|
| TextCheckCompleteCallback;
|
|
|
| SpellingServiceClient();
|
| @@ -93,7 +96,7 @@ class SpellingServiceClient : public net::URLFetcherDelegate {
|
| protected:
|
| // Parses a JSON-RPC response from the Spelling service.
|
| bool ParseResponse(const std::string& data,
|
| - std::vector<SpellCheckResult>* results);
|
| + std::vector<spellcheck::SpellCheckResult>* results);
|
|
|
| private:
|
| struct TextCheckCallbackData {
|
|
|