| Index: chromeos/components/tether/initializer.h
|
| diff --git a/chromeos/components/tether/initializer.h b/chromeos/components/tether/initializer.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d0e4a1feb1675bc1bd74f4b261639460f4dd8cc0
|
| --- /dev/null
|
| +++ b/chromeos/components/tether/initializer.h
|
| @@ -0,0 +1,29 @@
|
| +// Copyright 2016 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.
|
| +
|
| +#ifndef CHROMEOS_COMPONENTS_TETHER_INITIALIZER_H_
|
| +#define CHROMEOS_COMPONENTS_TETHER_INITIALIZER_H_
|
| +
|
| +#include "base/macros.h"
|
| +
|
| +namespace chromeos {
|
| +
|
| +namespace tether {
|
| +
|
| +// Initializes the Tether Chrome OS component.
|
| +// TODO(khorimoto): Implement.
|
| +class Initializer {
|
| + public:
|
| + Initializer();
|
| + ~Initializer();
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(Initializer);
|
| +};
|
| +
|
| +} // namespace tether
|
| +
|
| +} // namespace chromeos
|
| +
|
| +#endif // CHROMEOS_COMPONENTS_TETHER_INITIALIZER_H_
|
|
|