| 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..b16c4a9bda56e0a686c3c1c012c80b9964b45d66
|
| --- /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
|
|
|