| Index: chromeos/network/network_profile_observer.h
|
| diff --git a/chromeos/network/network_profile_observer.h b/chromeos/network/network_profile_observer.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..87a7b1982f1b6ec3f024dff693ba4b9f5f395a56
|
| --- /dev/null
|
| +++ b/chromeos/network/network_profile_observer.h
|
| @@ -0,0 +1,30 @@
|
| +// Copyright (c) 2013 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 CHROMEOS_NETWORK_NETWORK_PROFILE_OBSERVER_H_
|
| +#define CHROMEOS_NETWORK_NETWORK_PROFILE_OBSERVER_H_
|
| +
|
| +#include <string>
|
| +
|
| +#include "base/basictypes.h"
|
| +
|
| +namespace chromeos {
|
| +
|
| +struct NetworkProfile;
|
| +
|
| +class NetworkProfileObserver {
|
| + public:
|
| + virtual void OnProfileAdded(const NetworkProfile& profile) = 0;
|
| + virtual void OnProfileRemoved(const NetworkProfile& profile) = 0;
|
| +
|
| + protected:
|
| + virtual ~NetworkProfileObserver() {}
|
| +
|
| + private:
|
| + DISALLOW_ASSIGN(NetworkProfileObserver);
|
| +};
|
| +
|
| +} // namespace chromeos
|
| +
|
| +#endif // CHROMEOS_NETWORK_NETWORK_PROFILE_OBSERVER_H_
|
|
|