| Index: components/physical_web/data_source/physical_web_data_source.h
|
| diff --git a/components/physical_web/data_source/physical_web_data_source.h b/components/physical_web/data_source/physical_web_data_source.h
|
| index 927e8933cc979c49c9d690f6b3525bbd34287d44..c6310396ce1a25c4ac2a767975182c3def46f550 100644
|
| --- a/components/physical_web/data_source/physical_web_data_source.h
|
| +++ b/components/physical_web/data_source/physical_web_data_source.h
|
| @@ -11,17 +11,19 @@ namespace base {
|
| class ListValue;
|
| }
|
|
|
| +namespace physical_web {
|
| +
|
| class PhysicalWebListener;
|
|
|
| // Dictionary keys for reading Physical Web URL metadata.
|
| -extern const char kPhysicalWebDescriptionKey[];
|
| -extern const char kPhysicalWebDistanceEstimateKey[];
|
| -extern const char kPhysicalWebGroupIdKey[];
|
| -extern const char kPhysicalWebIconUrlKey[];
|
| -extern const char kPhysicalWebResolvedUrlKey[];
|
| -extern const char kPhysicalWebScanTimestampKey[];
|
| -extern const char kPhysicalWebScannedUrlKey[];
|
| -extern const char kPhysicalWebTitleKey[];
|
| +extern const char kDescriptionKey[];
|
| +extern const char kDistanceEstimateKey[];
|
| +extern const char kGroupIdKey[];
|
| +extern const char kIconUrlKey[];
|
| +extern const char kResolvedUrlKey[];
|
| +extern const char kScanTimestampKey[];
|
| +extern const char kScannedUrlKey[];
|
| +extern const char kTitleKey[];
|
|
|
| // Helper class for accessing Physical Web metadata and controlling the scanner.
|
| class PhysicalWebDataSource {
|
| @@ -56,4 +58,6 @@ class PhysicalWebDataSource {
|
| PhysicalWebListener* physical_web_listener) = 0;
|
| };
|
|
|
| +} // namespace physical_web
|
| +
|
| #endif // COMPONENTS_PHYSICAL_WEB_DATA_SOURCE_PHYSICAL_WEB_DATA_SOURCE_H_
|
|
|