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

Side by Side Diff: chrome/browser/spellchecker_linux.cc

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
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
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
OLDNEW
« no previous file with comments | « chrome/browser/spellcheck_message_filter_browsertest.cc ('k') | chrome/browser/spellchecker_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698