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

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: Addressed the feedback from jam@. 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) 2010 The Chromium Authors. All rights reserved.
Hironori Bono 2011/02/18 11:09:27 nit: 2010 -> 2011 to all files to help us keep all
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 class SpellCheckMessageFilter : public BrowserMessageFilter {
Hironori Bono 2011/02/18 11:09:27 nit: class comments?
11 public:
12 SpellCheckMessageFilter();
13 ~SpellCheckMessageFilter();
14
15 // BrowserMessageFilter implementation.
16 virtual bool OnMessageReceived(const IPC::Message& message,
17 bool* message_was_ok);
18
19 void OnPlatformRequestTextCheck(int route_id,
20 int identifier,
21 int document_tag,
22 const string16& text);
23 };
24
25 #endif // CHROME_BROWSER_SPELLCHECK_MESSAGE_FILTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698