blob: 7580388cf4070c1750dece77d2485b10e5f57012 (
plain)
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
|
// Copyright (c) 2010 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/external_pref_extension_provider.h"
#include "app/app_paths.h"
#include "base/file_path.h"
#include "base/file_util.h"
#include "base/logging.h"
#include "base/path_service.h"
#include "chrome/browser/extensions/stateful_external_extension_provider.h"
#include "chrome/common/json_value_serializer.h"
ExternalPrefExtensionProvider::ExternalPrefExtensionProvider()
: StatefulExternalExtensionProvider(Extension::EXTERNAL_PREF,
Extension::EXTERNAL_PREF_DOWNLOAD) {
FilePath json_file;
PathService::Get(app::DIR_EXTERNAL_EXTENSIONS, &json_file);
json_file = json_file.Append(FILE_PATH_LITERAL("external_extensions.json"));
if (file_util::PathExists(json_file)) {
JSONFileValueSerializer serializer(json_file);
SetPreferences(&serializer);
} else {
prefs_.reset(new DictionaryValue());
}
}
ExternalPrefExtensionProvider::~ExternalPrefExtensionProvider() {
}
void ExternalPrefExtensionProvider::SetPreferencesForTesting(
const std::string& json_data_for_testing) {
JSONStringValueSerializer serializer(json_data_for_testing);
SetPreferences(&serializer);
}
void ExternalPrefExtensionProvider::SetPreferences(
ValueSerializer* serializer) {
std::string error_msg;
Value* extensions = serializer->Deserialize(NULL, &error_msg);
scoped_ptr<DictionaryValue> dictionary(new DictionaryValue());
if (!extensions) {
LOG(WARNING) << "Unable to deserialize json data: " << error_msg;
} else {
if (!extensions->IsType(Value::TYPE_DICTIONARY)) {
NOTREACHED() << "Invalid json data";
} else {
dictionary.reset(static_cast<DictionaryValue*>(extensions));
}
}
prefs_.reset(dictionary.release());
}
|