| Index: extensions/browser/api/networking_private/networking_private_linux.h
|
| diff --git a/extensions/browser/api/networking_private/networking_private_linux.h b/extensions/browser/api/networking_private/networking_private_linux.h
|
| index 711a3e2c2e22eea8638525929b1fe2ac33f543ed..39e93bd255bc3adbcfa32f9d73f8d5759c9a322e 100644
|
| --- a/extensions/browser/api/networking_private/networking_private_linux.h
|
| +++ b/extensions/browser/api/networking_private/networking_private_linux.h
|
| @@ -17,10 +17,6 @@
|
| #include "components/keyed_service/core/keyed_service.h"
|
| #include "extensions/browser/api/networking_private/networking_private_delegate.h"
|
|
|
| -namespace content {
|
| -class BrowserContext;
|
| -}
|
| -
|
| namespace dbus {
|
| class Bus;
|
| class ObjectPath;
|
| @@ -38,8 +34,8 @@ class NetworkingPrivateLinux : public NetworkingPrivateDelegate {
|
|
|
| typedef std::vector<std::string> GuidList;
|
|
|
| - NetworkingPrivateLinux(content::BrowserContext* browser_context,
|
| - std::unique_ptr<VerifyDelegate> verify_delegate);
|
| + explicit NetworkingPrivateLinux(
|
| + std::unique_ptr<VerifyDelegate> verify_delegate);
|
|
|
| // NetworkingPrivateDelegate
|
| void GetProperties(const std::string& guid,
|
| @@ -260,8 +256,6 @@ class NetworkingPrivateLinux : public NetworkingPrivateDelegate {
|
|
|
| void OnNetworkListChangedEventOnUIThread(const GuidList& network_guids);
|
|
|
| - // Browser context.
|
| - content::BrowserContext* browser_context_;
|
| // Thread used for DBus actions.
|
| base::Thread dbus_thread_;
|
| // DBus instance. Only access on |dbus_thread_|.
|
|
|