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

Side by Side Diff: components/physical_web/data_source/physical_web_data_source.cc

Issue 2648973004: Remove GetMetadata from PhysicalWebDataSource and PhysicalWebScanner (Closed)
Patch Set: nil -> null Created 3 years, 11 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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/physical_web/data_source/physical_web_data_source.h" 5 #include "components/physical_web/data_source/physical_web_data_source.h"
6 6
7 namespace physical_web { 7 namespace physical_web {
8 8
9 const char kDescriptionKey[] = "description";
10 const char kDistanceEstimateKey[] = "distanceEstimate";
11 const char kGroupIdKey[] = "groupId";
12 const char kIconUrlKey[] = "icon";
13 const char kResolvedUrlKey[] = "resolvedUrl";
14 const char kScanTimestampKey[] = "scanTimestamp";
15 const char kScannedUrlKey[] = "scannedUrl";
16 const char kTitleKey[] = "title";
17
18 Metadata::Metadata() {} 9 Metadata::Metadata() {}
19 10
20 Metadata::Metadata(const Metadata& other) = default; 11 Metadata::Metadata(const Metadata& other) = default;
21 12
22 Metadata::~Metadata() {} 13 Metadata::~Metadata() {}
23 14
24 } // namespace physical_web 15 } // namespace physical_web
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698