HomeSort by relevance Sort by last modified time
    Searched refs:SpellcheckService (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_factory.h 12 class SpellcheckService;
17 // Internally, this owns all SpellcheckService objects.
20 // Returns the spell check host. This will create the SpellcheckService if it
22 static SpellcheckService* GetForProfile(Profile* profile);
24 static SpellcheckService* GetForRenderProcessId(int render_process_id);
27 static SpellcheckService* GetForProfileWithoutCreating(Profile* profile);
spellcheck_service.cc 33 SpellcheckService::EventType g_status_type =
34 SpellcheckService::BDICT_NOTINITIALIZED;
36 SpellcheckService::SpellcheckService(Profile* profile)
54 base::Bind(&SpellcheckService::OnEnableAutoSpellCorrectChanged,
58 base::Bind(&SpellcheckService::OnSpellCheckDictionaryChanged,
62 base::Bind(&SpellcheckService::OnUseSpellingServiceChanged,
66 base::Bind(&SpellcheckService::InitForAllRenderers,
80 SpellcheckService::~SpellcheckService() {
    [all...]
spellcheck_factory.cc 19 SpellcheckService* SpellcheckServiceFactory::GetForProfile(Profile* profile) {
20 return static_cast<SpellcheckService*>(
25 SpellcheckService* SpellcheckServiceFactory::GetForRenderProcessId(
38 SpellcheckService* SpellcheckServiceFactory::GetForProfileWithoutCreating(
40 return static_cast<SpellcheckService*>(
51 "SpellcheckService",
63 // Many variables are initialized from the profile in the SpellcheckService.
65 SpellcheckService* spellcheck = new SpellcheckService(profile);
spellcheck_service.h 34 // SpellcheckService maintains any per-profile information about spellcheck.
35 class SpellcheckService : public BrowserContextKeyedService,
54 explicit SpellcheckService(Profile* profile);
55 virtual ~SpellcheckService();
163 base::WeakPtrFactory<SpellcheckService> weak_ptr_factory_;
165 DISALLOW_COPY_AND_ASSIGN(SpellcheckService);
spellcheck_service_unittest.cc 22 return new SpellcheckService(static_cast<Profile*>(profile));
44 SpellcheckService::GetSpellCheckLanguagesFromAcceptLanguages(
57 SpellcheckService::GetSpellCheckLanguagesFromAcceptLanguages(
71 SpellcheckService::GetSpellCheckLanguagesFromAcceptLanguages(
88 SpellcheckService::GetSpellCheckLanguagesFromAcceptLanguages(
106 SpellcheckService::GetSpellCheckLanguagesFromAcceptLanguages(
spellcheck_message_filter.h 14 class SpellcheckService;
68 virtual SpellcheckService* GetSpellcheckService() const;
spellcheck_service_browsertest.cc 56 // Attach an event to the SpellcheckService object so we can receive its
59 SpellcheckService::AttachStatusEvent(&event);
61 // Ensure that the SpellcheckService object does not already exist. Otherwise
62 // the next line will not force creation of the SpellcheckService and the
64 SpellcheckService* service =
68 // Getting the spellcheck_service will initialize the SpellcheckService
70 // dictionary is loaded in the SpellcheckService constructor right now.
79 EXPECT_EQ(SpellcheckService::BDICT_CORRUPTED,
80 SpellcheckService::GetStatusEvent());
spellcheck_hunspell_dictionary.h 19 class SpellcheckService;
52 SpellcheckService* spellcheck_service);
129 SpellcheckService* spellcheck_service_;
spellcheck_custom_dictionary_unittest.cc 56 return new SpellcheckService(static_cast<Profile*>(profile));
206 SpellcheckService* spellcheck_service =
211 SpellcheckService* spellcheck_service2 =
212 static_cast<SpellcheckService*>(
378 SpellcheckService* spellcheck_service =
449 SpellcheckService* spellcheck_service =
454 SpellcheckService* spellcheck_service2 =
455 static_cast<SpellcheckService*>(
495 SpellcheckService* spellcheck_service =
500 SpellcheckService* spellcheck_service2
    [all...]
spellcheck_message_filter.cc 77 SpellcheckService* spellcheck_service =
91 SpellcheckService* spellcheck = GetSpellcheckService();
102 SpellcheckService* spellcheck = GetSpellcheckService();
136 SpellcheckService* spellcheck = GetSpellcheckService();
193 SpellcheckService* SpellCheckMessageFilter::GetSpellcheckService() const {
spellcheck_message_filter_unittest.cc 20 spellcheck_(new SpellcheckService(&profile_)) {}
27 virtual SpellcheckService* GetSpellcheckService() const OVERRIDE {
50 scoped_ptr<SpellcheckService> spellcheck_;
spellcheck_hunspell_dictionary.cc 164 SpellcheckService* spellcheck_service)
324 SpellcheckService::BDICT_CORRUPTED)) {
spellcheck_message_filter_mac.cc 169 SpellcheckService* spellcheck_service =
  /external/chromium_org/chrome/browser/extensions/api/spellcheck/
spellcheck_api.cc 31 SpellcheckService::DictionaryFormat GetDictionaryFormat(std::string format) {
33 return SpellcheckService::DICT_HUNSPELL;
35 return SpellcheckService::DICT_TEXT;
37 return SpellcheckService::DICT_UNKNOWN;
66 SpellcheckService* spellcheck = NULL;
  /external/chromium_org/chrome/browser/tab_contents/
spelling_menu_observer.cc 157 SpellcheckService* spellcheck_service =
262 SpellcheckService* spellcheck =
288 SpellcheckService* spellcheck =
361 SpellcheckService* spellcheck =
spellchecker_submenu_observer_hunspell.cc 49 SpellcheckService::GetSpellCheckLanguages(profile, &languages_);

Completed in 316 milliseconds