Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |