OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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/android/physical_web/physical_web_data_source_android.h
" |
| 6 |
| 7 #include "base/memory/ptr_util.h" |
| 8 #include "base/values.h" |
| 9 |
| 10 PhysicalWebDataSourceAndroid::PhysicalWebDataSourceAndroid() { |
| 11 } |
| 12 |
| 13 PhysicalWebDataSourceAndroid::~PhysicalWebDataSourceAndroid() { |
| 14 } |
| 15 |
| 16 void PhysicalWebDataSourceAndroid::StartDiscovery( |
| 17 bool network_request_enabled) { |
| 18 } |
| 19 |
| 20 void PhysicalWebDataSourceAndroid::StopDiscovery() { |
| 21 } |
| 22 |
| 23 std::unique_ptr<base::ListValue> PhysicalWebDataSourceAndroid::GetMetadata() { |
| 24 return base::MakeUnique<base::ListValue>(); |
| 25 } |
| 26 |
| 27 bool PhysicalWebDataSourceAndroid::HasUnresolvedDiscoveries() { |
| 28 return false; |
| 29 } |
| 30 |
| 31 void PhysicalWebDataSourceAndroid::RegisterListener( |
| 32 PhysicalWebListener* listener) { |
| 33 } |
| 34 |
| 35 void PhysicalWebDataSourceAndroid::UnregisterListener( |
| 36 PhysicalWebListener* listener) { |
| 37 } |
OLD | NEW |