| Index: chrome/common/temp_scaffolding_stubs.h
|
| ===================================================================
|
| --- chrome/common/temp_scaffolding_stubs.h (revision 10337)
|
| +++ chrome/common/temp_scaffolding_stubs.h (working copy)
|
| @@ -494,39 +494,6 @@
|
| }
|
| };
|
|
|
| -
|
| -// spellchecker.h works on Linux, but it depends on hunspell which isn't
|
| -// built on Mac. Getting it to build on the Mac is apparently hard, so I'll
|
| -// punt this to the Mac team for now.
|
| -#if defined(OS_MACOSX)
|
| -class SpellChecker : public base::RefCountedThreadSafe<SpellChecker> {
|
| - public:
|
| - typedef std::wstring Language;
|
| - typedef std::vector<Language> Languages;
|
| - SpellChecker(const std::wstring& dict_dir,
|
| - const Language& language,
|
| - URLRequestContext* request_context,
|
| - const std::wstring& custom_dictionary_file_name) {}
|
| -
|
| - bool SpellCheckWord(const wchar_t* in_word,
|
| - int in_word_len,
|
| - int* misspelling_start,
|
| - int* misspelling_len,
|
| - std::vector<std::wstring>* optional_suggestions) {
|
| - NOTIMPLEMENTED();
|
| - return true;
|
| - }
|
| - static int GetSpellCheckLanguagesToDisplayInContextMenu(
|
| - Profile* profile,
|
| - Languages* display_languages) {
|
| - NOTIMPLEMENTED();
|
| - return 0;
|
| - }
|
| -};
|
| -#else
|
| -#include "chrome/browser/spellchecker.h"
|
| -#endif
|
| -
|
| class WebAppLauncher {
|
| public:
|
| static void Launch(Profile* profile, const GURL& url) {
|
|
|