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

Side by Side 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, 2 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 unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« 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