1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/api/spellcheck/spellcheck_api.h"
#include "base/lazy_instance.h"
#include "chrome/browser/spellchecker/spellcheck_factory.h"
#include "chrome/browser/spellchecker/spellcheck_service.h"
#include "chrome/common/extensions/api/spellcheck/spellcheck_handler.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/common/manifest_constants.h"
namespace extensions {
namespace errors = manifest_errors;
namespace {
SpellcheckDictionaryInfo* GetSpellcheckDictionaryInfo(
const Extension* extension) {
SpellcheckDictionaryInfo *spellcheck_info =
static_cast<SpellcheckDictionaryInfo*>(
extension->GetManifestData(manifest_keys::kSpellcheck));
return spellcheck_info;
}
SpellcheckService::DictionaryFormat GetDictionaryFormat(
const std::string& format) {
if (format == "hunspell") {
return SpellcheckService::DICT_HUNSPELL;
} else if (format == "text") {
return SpellcheckService::DICT_TEXT;
} else {
return SpellcheckService::DICT_UNKNOWN;
}
}
} // namespace
SpellcheckAPI::SpellcheckAPI(content::BrowserContext* context)
: extension_registry_observer_(this) {
extension_registry_observer_.Add(ExtensionRegistry::Get(context));
}
SpellcheckAPI::~SpellcheckAPI() {
}
static base::LazyInstance<BrowserContextKeyedAPIFactory<SpellcheckAPI> >
g_factory = LAZY_INSTANCE_INITIALIZER;
// static
BrowserContextKeyedAPIFactory<SpellcheckAPI>*
SpellcheckAPI::GetFactoryInstance() {
return g_factory.Pointer();
}
void SpellcheckAPI::OnExtensionLoaded(content::BrowserContext* browser_context,
const Extension* extension) {
SpellcheckDictionaryInfo* spellcheck_info =
GetSpellcheckDictionaryInfo(extension);
if (spellcheck_info) {
// TODO(rlp): Handle load failure. =
SpellcheckService* spellcheck =
SpellcheckServiceFactory::GetForContext(browser_context);
spellcheck->LoadExternalDictionary(
spellcheck_info->language,
spellcheck_info->locale,
spellcheck_info->path,
GetDictionaryFormat(spellcheck_info->format));
}
}
void SpellcheckAPI::OnExtensionUnloaded(
content::BrowserContext* browser_context,
const Extension* extension,
UnloadedExtensionInfo::Reason reason) {
SpellcheckDictionaryInfo* spellcheck_info =
GetSpellcheckDictionaryInfo(extension);
if (spellcheck_info) {
// TODO(rlp): Handle unload failure.
SpellcheckService* spellcheck =
SpellcheckServiceFactory::GetForContext(browser_context);
spellcheck->UnloadExternalDictionary(spellcheck_info->path);
}
}
template <>
void
BrowserContextKeyedAPIFactory<SpellcheckAPI>::DeclareFactoryDependencies() {
DependsOn(SpellcheckServiceFactory::GetInstance());
}
} // namespace extensions
|