Chris Masone | 7aa5f90 | 2011-07-11 11:13:35 -0700 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium OS 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 | #include "shill/mock_profile.h" |
| 6 | |
| 7 | #include <string> |
| 8 | |
| 9 | #include <base/memory/ref_counted.h> |
| 10 | #include <base/stringprintf.h> |
| 11 | #include <gmock/gmock.h> |
| 12 | |
| 13 | #include "shill/refptr_types.h" |
| 14 | |
| 15 | namespace shill { |
| 16 | |
Chris Masone | 9d77993 | 2011-08-25 16:33:41 -0700 | [diff] [blame] | 17 | MockProfile::MockProfile(ControlInterface *control, Manager *manager) |
| 18 | : Profile(control, manager, Identifier("mock"), "", false) { |
Chris Masone | 7df0c67 | 2011-07-15 10:24:54 -0700 | [diff] [blame] | 19 | } |
| 20 | |
Chris Masone | 2ae797d | 2011-08-23 20:41:00 -0700 | [diff] [blame] | 21 | MockProfile::MockProfile(ControlInterface *control, |
Chris Masone | 7df0c67 | 2011-07-15 10:24:54 -0700 | [diff] [blame] | 22 | Manager *manager, |
| 23 | const std::string &identifier) |
Chris Masone | 9d77993 | 2011-08-25 16:33:41 -0700 | [diff] [blame] | 24 | : Profile(control, manager, Identifier(identifier), "", false) { |
Chris Masone | 7aa5f90 | 2011-07-11 11:13:35 -0700 | [diff] [blame] | 25 | } |
| 26 | |
| 27 | MockProfile::~MockProfile() {} |
| 28 | |
| 29 | } // namespace shill |