| OLD | NEW |
| 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 const char kPhysicalWebDescriptionKey[] = "description"; | 7 namespace physical_web { |
| 8 const char kPhysicalWebDistanceEstimateKey[] = "distanceEstimate"; | 8 |
| 9 const char kPhysicalWebGroupIdKey[] = "groupId"; | 9 const char kDescriptionKey[] = "description"; |
| 10 const char kPhysicalWebIconUrlKey[] = "icon"; | 10 const char kDistanceEstimateKey[] = "distanceEstimate"; |
| 11 const char kPhysicalWebResolvedUrlKey[] = "resolvedUrl"; | 11 const char kGroupIdKey[] = "groupId"; |
| 12 const char kPhysicalWebScanTimestampKey[] = "scanTimestamp"; | 12 const char kIconUrlKey[] = "icon"; |
| 13 const char kPhysicalWebScannedUrlKey[] = "scannedUrl"; | 13 const char kResolvedUrlKey[] = "resolvedUrl"; |
| 14 const char kPhysicalWebTitleKey[] = "title"; | 14 const char kScanTimestampKey[] = "scanTimestamp"; |
| 15 const char kScannedUrlKey[] = "scannedUrl"; |
| 16 const char kTitleKey[] = "title"; |
| 17 |
| 18 } // namespace physical_web |
| OLD | NEW |