Home | History | Annotate | Download | only in local_discovery
      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 
      9 namespace local_discovery {
     10 
     11 PrivetV3SetupFlow::Delegate::~Delegate() {
     12 }
     13 
     14 PrivetV3SetupFlow::PrivetV3SetupFlow(Delegate* delegate)
     15     : delegate_(delegate), weak_ptr_factory_(this) {
     16 }
     17 
     18 PrivetV3SetupFlow::~PrivetV3SetupFlow() {
     19 }
     20 
     21 void PrivetV3SetupFlow::Register(const std::string& service_name) {
     22   NOTIMPLEMENTED();
     23 }
     24 
     25 #if defined(ENABLE_WIFI_BOOTSTRAPPING)
     26 void PrivetV3SetupFlow::SetupWifiAndRegister(const std::string& device_ssid) {
     27   NOTIMPLEMENTED();
     28 }
     29 #endif  // ENABLE_WIFI_BOOTSTRAPPING
     30 
     31 }  // namespace local_discovery
     32