| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // If linux ever gains a platform specific spellchecker, it will be | 5 // If linux ever gains a platform specific spellchecker, it will be |
| 6 // implemented here. | 6 // implemented here. |
| 7 | 7 |
| 8 #include "spellchecker_platform_engine.h" | 8 #include "spellchecker_platform_engine.h" |
| 9 | 9 |
| 10 namespace SpellCheckerPlatform { | 10 namespace SpellCheckerPlatform { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 void AddWord(const string16& word) {} | 50 void AddWord(const string16& word) {} |
| 51 | 51 |
| 52 void RemoveWord(const string16& word) {} | 52 void RemoveWord(const string16& word) {} |
| 53 | 53 |
| 54 int GetDocumentTag() { return 0; } | 54 int GetDocumentTag() { return 0; } |
| 55 | 55 |
| 56 void IgnoreWord(const string16& word) {} | 56 void IgnoreWord(const string16& word) {} |
| 57 | 57 |
| 58 void CloseDocumentWithTag(int tag) {} | 58 void CloseDocumentWithTag(int tag) {} |
| 59 | 59 |
| 60 void RequestTextCheck(int route_id, |
| 61 int identifier, |
| 62 int document_tag, |
| 63 const string16& text, |
| 64 BrowserMessageFilter* destination) {} |
| 65 |
| 60 } // namespace SpellCheckerPlatform | 66 } // namespace SpellCheckerPlatform |
| OLD | NEW |