Chromium Code Reviews| Index: chromeos/components/tether/host_scanner.cc |
| diff --git a/chromeos/components/tether/host_scanner.cc b/chromeos/components/tether/host_scanner.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d83d09373e43ada13cc0b08cbde75738b682450b |
| --- /dev/null |
| +++ b/chromeos/components/tether/host_scanner.cc |
| @@ -0,0 +1,21 @@ |
| +// Copyright 2014 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/components/tether/host_scanner.h" |
| + |
| +#include "base/location.h" |
|
Ryan Hansberry
2016/12/12 19:18:27
What is this import used for?
Kyle Horimoto
2016/12/12 19:22:13
Done.
|
| + |
| +namespace chromeos { |
| + |
| +namespace tether { |
| + |
| +HostScanner::HostScanner() {} |
| + |
| +HostScanner::~HostScanner() {} |
| + |
| +void HostScanner::StartScan() {} |
| + |
| +} // namespace tether |
| + |
| +} // namespace chromeos |