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

Unified Diff: components/physical_web/data_source/physical_web_data_source.h

Issue 2528893003: [PhysicalWeb] Add physical_web namespace. (Closed)
Patch Set: Created 4 years, 1 month 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: 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_

Powered by Google App Engine
This is Rietveld 408576698