OLD | NEW |
| (Empty) |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROMEOS_NETWORK_NETWORK_PROFILE_HANDLER_STUB_H_ | |
6 #define CHROMEOS_NETWORK_NETWORK_PROFILE_HANDLER_STUB_H_ | |
7 | |
8 #include "chromeos/chromeos_export.h" | |
9 #include "chromeos/network/network_profile_handler.h" | |
10 | |
11 namespace chromeos { | |
12 | |
13 class CHROMEOS_EXPORT NetworkProfileHandlerStub | |
14 : public NetworkProfileHandler { | |
15 public: | |
16 using NetworkProfileHandler::AddProfile; | |
17 using NetworkProfileHandler::RemoveProfile; | |
18 }; | |
19 | |
20 } // namespace chromeos | |
21 | |
22 #endif // CHROMEOS_NETWORK_NETWORK_PROFILE_HANDLER_STUB_H_ | |
OLD | NEW |