Index: chrome/browser/android/physical_web/physical_web_data_source_android.cc |
diff --git a/chrome/browser/android/physical_web/physical_web_data_source_android.cc b/chrome/browser/android/physical_web/physical_web_data_source_android.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9e078b391b3f3acf2ffb191dd4998c0d3a1ba0ba |
--- /dev/null |
+++ b/chrome/browser/android/physical_web/physical_web_data_source_android.cc |
@@ -0,0 +1,37 @@ |
+// 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. |
+ |
+#include "chrome/browser/android/physical_web/physical_web_data_source_android.h" |
+ |
+#include "base/memory/ptr_util.h" |
+#include "base/values.h" |
+ |
+PhysicalWebDataSourceAndroid::PhysicalWebDataSourceAndroid() { |
+} |
+ |
+PhysicalWebDataSourceAndroid::~PhysicalWebDataSourceAndroid() { |
+} |
+ |
+void PhysicalWebDataSourceAndroid::StartDiscovery( |
+ bool network_request_enabled) { |
+} |
+ |
+void PhysicalWebDataSourceAndroid::StopDiscovery() { |
+} |
+ |
+std::unique_ptr<base::ListValue> PhysicalWebDataSourceAndroid::GetMetadata() { |
+ return base::MakeUnique<base::ListValue>(); |
+} |
+ |
+bool PhysicalWebDataSourceAndroid::HasUnresolvedDiscoveries() { |
+ return false; |
+} |
+ |
+void PhysicalWebDataSourceAndroid::RegisterListener( |
+ PhysicalWebListener* listener) { |
+} |
+ |
+void PhysicalWebDataSourceAndroid::UnregisterListener( |
+ PhysicalWebListener* listener) { |
+} |