blob: e0d473b18f35df69db8f69581d07db5d5cc94358 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
|
// Copyright 2015 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 "ios/chrome/browser/net/http_server_properties_manager_factory.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "components/prefs/pref_change_registrar.h"
#include "components/prefs/pref_service.h"
#include "ios/chrome/browser/pref_names.h"
#include "ios/web/public/web_thread.h"
#include "net/http/http_server_properties_manager.h"
namespace {
class PrefServiceAdapter
: public net::HttpServerPropertiesManager::PrefDelegate {
public:
explicit PrefServiceAdapter(PrefService* pref_service)
: pref_service_(pref_service), path_(prefs::kHttpServerProperties) {
pref_change_registrar_.Init(pref_service_);
}
~PrefServiceAdapter() override {}
// PrefDelegate implementation.
bool HasServerProperties() override {
return pref_service_->HasPrefPath(path_);
}
const base::DictionaryValue& GetServerProperties() const override {
// Guaranteed not to return null when the pref is registered
// (RegisterProfilePrefs was called).
return *pref_service_->GetDictionary(path_);
}
void SetServerProperties(const base::DictionaryValue& value) override {
return pref_service_->Set(path_, value);
}
void StartListeningForUpdates(const base::Closure& callback) override {
pref_change_registrar_.Add(path_, callback);
}
void StopListeningForUpdates() override {
pref_change_registrar_.RemoveAll();
}
private:
PrefService* pref_service_;
const std::string path_;
PrefChangeRegistrar pref_change_registrar_;
DISALLOW_COPY_AND_ASSIGN(PrefServiceAdapter);
};
} // namespace
// static
net::HttpServerPropertiesManager*
HttpServerPropertiesManagerFactory::CreateManager(PrefService* pref_service) {
return new net::HttpServerPropertiesManager(
new PrefServiceAdapter(pref_service), // Transfers ownership.
web::WebThread::GetTaskRunnerForThread(web::WebThread::IO));
}
// static
void HttpServerPropertiesManagerFactory::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) {
registry->RegisterDictionaryPref(prefs::kHttpServerProperties);
}
|