| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "chrome/browser/spellchecker/spellcheck_platform.h" | 5 #include "components/spellcheck/browser/spellcheck_platform.h" |
| 6 | 6 |
| 7 #include "base/callback.h" | 7 #include "base/callback.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "chrome/common/chrome_switches.h" | 9 #include "content/public/common/content_switches.h" |
| 10 | 10 |
| 11 namespace spellcheck_platform { | 11 namespace spellcheck_platform { |
| 12 | 12 |
| 13 void GetAvailableLanguages(std::vector<std::string>* spellcheck_languages) { | 13 void GetAvailableLanguages(std::vector<std::string>* spellcheck_languages) { |
| 14 } | 14 } |
| 15 | 15 |
| 16 std::string GetSpellCheckerLanguage() { | 16 std::string GetSpellCheckerLanguage() { |
| 17 return std::string(); | 17 return std::string(); |
| 18 } | 18 } |
| 19 | 19 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 void CloseDocumentWithTag(int tag) { | 67 void CloseDocumentWithTag(int tag) { |
| 68 } | 68 } |
| 69 | 69 |
| 70 void RequestTextCheck(int document_tag, | 70 void RequestTextCheck(int document_tag, |
| 71 const base::string16& text, | 71 const base::string16& text, |
| 72 TextCheckCompleteCallback callback) { | 72 TextCheckCompleteCallback callback) { |
| 73 | 73 |
| 74 } | 74 } |
| 75 | 75 |
| 76 } // namespace spellcheck_platform | 76 } // namespace spellcheck_platform |
| OLD | NEW |