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

Side by Side Diff: chrome/browser/spellcheck_message_filter.h

Issue 6392045: Integrating Mac OS Grammar checker into Chromium. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated to ToT Created 9 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SPELLCHECK_MESSAGE_FILTER_H_
6 #define CHROME_BROWSER_SPELLCHECK_MESSAGE_FILTER_H_
7
8 #include "chrome/browser/browser_message_filter.h"
9
10 // A message filter implementation that receives
11 // the platform spell checker requests from SpellCheckProvider.
12 class SpellCheckMessageFilter : public BrowserMessageFilter {
13 public:
14 SpellCheckMessageFilter();
15 ~SpellCheckMessageFilter();
16
17 // BrowserMessageFilter implementation.
18 virtual bool OnMessageReceived(const IPC::Message& message,
19 bool* message_was_ok);
20
21 private:
22 void OnPlatformRequestTextCheck(int route_id,
23 int identifier,
24 int document_tag,
25 const string16& text);
26 };
27
28 #endif // CHROME_BROWSER_SPELLCHECK_MESSAGE_FILTER_H_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/browser_render_process_host.cc ('k') | chrome/browser/spellcheck_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698