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

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

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.cc
diff --git a/components/physical_web/data_source/physical_web_data_source.cc b/components/physical_web/data_source/physical_web_data_source.cc
index 31e8349694a27fa3d6c998c6593c3ca4c9d8e009..a7d9b2a2394872e3d59ef3a11e211f873cd6b0de 100644
--- a/components/physical_web/data_source/physical_web_data_source.cc
+++ b/components/physical_web/data_source/physical_web_data_source.cc
@@ -4,11 +4,15 @@
#include "components/physical_web/data_source/physical_web_data_source.h"
-const char kPhysicalWebDescriptionKey[] = "description";
-const char kPhysicalWebDistanceEstimateKey[] = "distanceEstimate";
-const char kPhysicalWebGroupIdKey[] = "groupId";
-const char kPhysicalWebIconUrlKey[] = "icon";
-const char kPhysicalWebResolvedUrlKey[] = "resolvedUrl";
-const char kPhysicalWebScanTimestampKey[] = "scanTimestamp";
-const char kPhysicalWebScannedUrlKey[] = "scannedUrl";
-const char kPhysicalWebTitleKey[] = "title";
+namespace physical_web {
+
+const char kDescriptionKey[] = "description";
+const char kDistanceEstimateKey[] = "distanceEstimate";
+const char kGroupIdKey[] = "groupId";
+const char kIconUrlKey[] = "icon";
+const char kResolvedUrlKey[] = "resolvedUrl";
+const char kScanTimestampKey[] = "scanTimestamp";
+const char kScannedUrlKey[] = "scannedUrl";
+const char kTitleKey[] = "title";
+
+} // namespace physical_web

Powered by Google App Engine
This is Rietveld 408576698