| Index: chromeos/network/network_profile_handler_stub.cc
|
| diff --git a/chromeos/network/network_profile_handler_stub.cc b/chromeos/network/network_profile_handler_stub.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ed43c3a9a554ffdec657b25091eda9a6caff168d
|
| --- /dev/null
|
| +++ b/chromeos/network/network_profile_handler_stub.cc
|
| @@ -0,0 +1,18 @@
|
| +// 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.
|
| +
|
| +#include "chromeos/network/network_profile_handler_stub.h"
|
| +
|
| +
|
| +namespace chromeos {
|
| +
|
| +void NetworkProfileHandlerStub::AddProfile(const NetworkProfile& profile) {
|
| + NetworkProfileHandler::AddProfile(profile);
|
| +}
|
| +
|
| +void NetworkProfileHandlerStub::RemoveProfile(const std::string& profile_path) {
|
| + NetworkProfileHandler::RemoveProfile(profile_path);
|
| +}
|
| +
|
| +} // namespace chromeos
|
|
|