privetv3_setup_flow.cc revision f8ee788a64d60abd8f2d742a5fdedde054ecd910
1// Copyright 2014 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#include "chrome/browser/local_discovery/privetv3_setup_flow.h"
6
7#include "base/logging.h"
8
9namespace local_discovery {
10
11PrivetV3SetupFlow::Delegate::~Delegate() {
12}
13
14PrivetV3SetupFlow::PrivetV3SetupFlow(Delegate* delegate)
15    : delegate_(delegate), weak_ptr_factory_(this) {
16}
17
18PrivetV3SetupFlow::~PrivetV3SetupFlow() {
19}
20
21void PrivetV3SetupFlow::Register(const std::string& service_name) {
22  NOTIMPLEMENTED();
23}
24
25#if defined(ENABLE_WIFI_BOOTSTRAPPING)
26void PrivetV3SetupFlow::SetupWifiAndRegister(const std::string& device_ssid) {
27  NOTIMPLEMENTED();
28}
29#endif  // ENABLE_WIFI_BOOTSTRAPPING
30
31}  // namespace local_discovery
32