Index: components/physical_web/webui/physical_web_ui_constants.cc |
diff --git a/components/physical_web/webui/physical_web_ui_constants.cc b/components/physical_web/webui/physical_web_ui_constants.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..711efd09afa68c028a6a3f090db1789af0cf191d |
--- /dev/null |
+++ b/components/physical_web/webui/physical_web_ui_constants.cc |
@@ -0,0 +1,27 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "components/physical_web/webui/physical_web_ui_constants.h" |
+ |
+namespace physical_web_ui { |
+ |
+// Resource paths. |
+const char kPhysicalWebJS[] = "physical_web.js"; |
+const char kPhysicalWebCSS[] = "physical_web.css"; |
+ |
+// Message handlers. |
+const char kRequestNearbyURLs[] = "requestNearbyURLs"; |
+ |
+// Strings. |
+const char kTitle[] = "title"; |
+const char kPageInfo[] = "pageInfo"; |
+const char kPageInfoDescription[] = "pageInfoDescription"; |
+const char kPageInfoIcon[] = "pageInfoIcon"; |
+const char kPageInfoTitle[] = "pageInfoTitle"; |
+const char kResolvedUrl[] = "resolvedUrl"; |
+const char kScannedUrl[] = "scannedUrl"; |
+const char kReturnNearbyURLs[] = "returnNearbyURLs"; |
+const char kMetadata[] = "metadata"; |
+ |
+} // namespace physical_web_ui |