blob: b2c222de4c2ac3120b81594cc6a0abad7e171682 (
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
|
// Copyright 2014 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 EXTENSIONS_BROWSER_API_STORAGE_SETTINGS_OBSERVER_H_
#define EXTENSIONS_BROWSER_API_STORAGE_SETTINGS_OBSERVER_H_
#include "base/observer_list_threadsafe.h"
#include "extensions/browser/api/storage/settings_namespace.h"
namespace extensions {
// Interface for classes that listen to changes to extension settings.
class SettingsObserver {
public:
// Called when a list of settings have changed for an extension.
virtual void OnSettingsChanged(
const std::string& extension_id,
settings_namespace::Namespace settings_namespace,
const std::string& changes_json) = 0;
virtual ~SettingsObserver() {}
};
typedef ObserverListThreadSafe<SettingsObserver>
SettingsObserverList;
} // namespace extensions
#endif // EXTENSIONS_BROWSER_API_STORAGE_SETTINGS_OBSERVER_H_
|