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