1c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu//
2c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// Copyright (C) 2011 The Android Open Source Project
3c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu//
4c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// Licensed under the Apache License, Version 2.0 (the "License");
5c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// you may not use this file except in compliance with the License.
6c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// You may obtain a copy of the License at
7c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu//
8c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu//      http://www.apache.org/licenses/LICENSE-2.0
9c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu//
10c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// Unless required by applicable law or agreed to in writing, software
11c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// distributed under the License is distributed on an "AS IS" BASIS,
12c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// See the License for the specific language governing permissions and
14c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu// limitations under the License.
15c0beca55d290fe0b1c96d78cbbcf94b05c23f5a5Peter Qiu//
16c1dec4d5cad7c6ee2cd8dbc4f47e4d30403dcca1Paul Stewart
17c1dec4d5cad7c6ee2cd8dbc4f47e4d30403dcca1Paul Stewart#include "shill/mock_connection.h"
18c1dec4d5cad7c6ee2cd8dbc4f47e4d30403dcca1Paul Stewart
19c1dec4d5cad7c6ee2cd8dbc4f47e4d30403dcca1Paul Stewart#include "shill/ipconfig.h"
20c1dec4d5cad7c6ee2cd8dbc4f47e4d30403dcca1Paul Stewart
21c1dec4d5cad7c6ee2cd8dbc4f47e4d30403dcca1Paul Stewartnamespace shill {
22c1dec4d5cad7c6ee2cd8dbc4f47e4d30403dcca1Paul Stewart
231e006c610db980bca337121134d2ba54497b7a59Paul StewartMockConnection::MockConnection(const DeviceInfo* device_info)
24608ec29525f553d51f0a92e84176e3d4b45930a9Peter Qiu    : Connection(0, std::string(), Technology::kUnknown, device_info,
25608ec29525f553d51f0a92e84176e3d4b45930a9Peter Qiu                 nullptr) {}
26c1dec4d5cad7c6ee2cd8dbc4f47e4d30403dcca1Paul Stewart
27c1dec4d5cad7c6ee2cd8dbc4f47e4d30403dcca1Paul StewartMockConnection::~MockConnection() {}
28c1dec4d5cad7c6ee2cd8dbc4f47e4d30403dcca1Paul Stewart
29c1dec4d5cad7c6ee2cd8dbc4f47e4d30403dcca1Paul Stewart}  // namespace shill
30