| Index: chromeos/network/network_profile_handler_stub.h
|
| diff --git a/chromeos/network/network_profile_handler_stub.h b/chromeos/network/network_profile_handler_stub.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8a24ebecbb8d5a164f1b77c1ec76a968d52eb75f
|
| --- /dev/null
|
| +++ b/chromeos/network/network_profile_handler_stub.h
|
| @@ -0,0 +1,22 @@
|
| +// 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_HANDLER_STUB_H_
|
| +#define CHROMEOS_NETWORK_NETWORK_PROFILE_HANDLER_STUB_H_
|
| +
|
| +#include "chromeos/chromeos_export.h"
|
| +#include "chromeos/network/network_profile_handler.h"
|
| +
|
| +namespace chromeos {
|
| +
|
| +class CHROMEOS_EXPORT NetworkProfileHandlerStub
|
| + : public NetworkProfileHandler {
|
| + public:
|
| + void AddProfile(const NetworkProfile& profile);
|
| + void RemoveProfile(const std::string& profile_path);
|
| +};
|
| +
|
| +} // namespace chromeos
|
| +
|
| +#endif // CHROMEOS_NETWORK_NETWORK_PROFILE_HANDLER_STUB_H_
|
|
|