Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2354)

Unified Diff: chrome/browser/android/physical_web/physical_web_data_source_android.cc

Issue 2361603002: Add an empty Android implementation of the PhysicalWebDataSource (Closed)
Patch Set: rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {
+}
« no previous file with comments | « chrome/browser/android/physical_web/physical_web_data_source_android.h ('k') | chrome/browser/browser_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698