blob: 1bbb12fe57a0613ec09c304e8e95fc68c6e09f89 (
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) 2011 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.
#ifndef CHROME_BROWSER_CHROMEOS_USER_CROS_SETTINGS_PROVIDER_H_
#define CHROME_BROWSER_CHROMEOS_USER_CROS_SETTINGS_PROVIDER_H_
#pragma once
#include <string>
#include "base/basictypes.h"
#include "base/callback.h"
#include "chrome/browser/chromeos/cros_settings_provider.h"
#include "chrome/browser/chromeos/login/signed_settings_helper.h"
class PrefService;
namespace base {
class ListValue;
}
namespace chromeos {
// CrosSettingsProvider implementation that works with SignedSettings.
// TODO(nkostylev): Rename this class to indicate that it is
// SignedSettings specific.
class UserCrosSettingsProvider : public CrosSettingsProvider {
public:
UserCrosSettingsProvider();
virtual ~UserCrosSettingsProvider() {}
// Registers cached users settings in preferences.
static void RegisterPrefs(PrefService* local_state);
// Reloads values from device settings.
void Reload();
// CrosSettingsProvider implementation.
virtual const base::Value* Get(const std::string& path) const OVERRIDE;
virtual bool GetTrusted(const std::string& path,
const base::Closure& callback) const OVERRIDE;
virtual bool HandlesSetting(const std::string& path) const OVERRIDE;
private:
// CrosSettingsProvider implementation.
virtual void DoSet(const std::string& path,
const base::Value& value) OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(UserCrosSettingsProvider);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_USER_CROS_SETTINGS_PROVIDER_H_
|