Chromium Code Reviews| Index: chrome/browser/spellchecker/spellcheck_message_filter_platform.h |
| diff --git a/chrome/browser/spellchecker/spellcheck_message_filter_platform.h b/chrome/browser/spellchecker/spellcheck_message_filter_platform.h |
| index a632112734b42457585b725c12f53d7b976d3a3a..18fde140df180445f607ae197fa16110c3155954 100644 |
| --- a/chrome/browser/spellchecker/spellcheck_message_filter_platform.h |
| +++ b/chrome/browser/spellchecker/spellcheck_message_filter_platform.h |
| @@ -8,6 +8,7 @@ |
| #include <map> |
| #include "chrome/browser/spellchecker/spellcheck_message_filter.h" |
| +#include "chrome/browser/spellchecker/spellchecker_session_bridge_android.h" |
|
please use gerrit instead
2015/08/11 16:43:46
Forward declare SpellCheckerSessionBridge instead
dylanking
2015/08/12 01:29:55
Done, after some struggle.
|
| #include "chrome/common/spellcheck_result.h" |
| #include "content/public/browser/browser_message_filter.h" |
| @@ -51,6 +52,7 @@ class SpellCheckMessageFilterPlatform : public content::BrowserMessageFilter { |
| int render_process_id_; |
| + scoped_ptr<SpellCheckerSessionBridge> impl_; |
|
please use gerrit instead
2015/08/11 16:43:46
Add a comment that this implementation detail is u
dylanking
2015/08/12 00:16:27
Done.
|
| // A JSON-RPC client that calls the Spelling service in the background. |
| scoped_ptr<SpellingServiceClient> client_; |