Chromium Code Reviews| Index: chrome/browser/chromeos/net/network_pref_state_observer.h |
| diff --git a/chrome/browser/chromeos/net/network_pref_state_observer.h b/chrome/browser/chromeos/net/network_pref_state_observer.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a34f0079e28ba979a8666f675d00b6fc6c8e5bc0 |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/net/network_pref_state_observer.h |
| @@ -0,0 +1,39 @@ |
| +// Copyright 2016 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_NET_NETWORK_PREF_STATE_OBSERVER_H_ |
| +#define CHROME_BROWSER_CHROMEOS_NET_NETWORK_PREF_STATE_OBSERVER_H_ |
| + |
| +#include "base/macros.h" |
| +#include "content/public/browser/notification_observer.h" |
| +#include "content/public/browser/notification_registrar.h" |
| + |
| +class Profile; |
| + |
| +namespace chromeos { |
| + |
| +// Class to update NetworkHandler when the PrefService state changes. The |
| +// implementation currently relies on g_browser_process since it holds the |
| +// default PrefService. |
| +class NetworkPrefStateObserver : public content::NotificationObserver { |
| + public: |
| + NetworkPrefStateObserver(); |
| + ~NetworkPrefStateObserver() override; |
| + |
| + // content::NotificationObserver |
| + void Observe(int type, |
| + const content::NotificationSource& source, |
|
emaxx
2016/11/02 18:18:05
nit: #include "content/public/browser/notification
stevenjb
2016/11/02 19:47:33
Not actually necessary. This is overriding a Notif
|
| + const content::NotificationDetails& details) override; |
|
emaxx
2016/11/02 18:18:05
nit: #include "content/public/browser/notification
stevenjb
2016/11/02 19:47:33
Ditto.
|
| + |
| + private: |
| + void InitializeNetworkPrefServices(Profile* profile); |
| + |
| + content::NotificationRegistrar notification_registrar_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(NetworkPrefStateObserver); |
| +}; |
| + |
| +} // namespace chromeos |
| + |
| +#endif // CHROME_BROWSER_CHROMEOS_NET_NETWORK_PREF_STATE_OBSERVER_H_ |