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

Unified Diff: chrome/browser/ui/webui/physical_web/physical_web_ui.cc

Issue 2698503004: Add empty list indicator for Physical Web WebUI (Closed)
Patch Set: rebase Created 3 years, 10 months 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: chrome/browser/ui/webui/physical_web/physical_web_ui.cc
diff --git a/chrome/browser/ui/webui/physical_web/physical_web_ui.cc b/chrome/browser/ui/webui/physical_web/physical_web_ui.cc
index a37fb457cfb73e4cbf03dd9902eb983aa32866f4..24a663949e73a551e2368e8821f897c84f2875fc 100644
--- a/chrome/browser/ui/webui/physical_web/physical_web_ui.cc
+++ b/chrome/browser/ui/webui/physical_web/physical_web_ui.cc
@@ -25,6 +25,10 @@ content::WebUIDataSource* CreatePhysicalWebHTMLSource() {
source->AddLocalizedString(physical_web_ui::kTitle,
IDS_PHYSICAL_WEB_UI_TITLE);
+ source->AddLocalizedString(physical_web_ui::kEmptyMessage,
+ IDS_PHYSICAL_WEB_UI_EMPTY_MESSAGE);
+ source->AddLocalizedString(physical_web_ui::kScanningMessage,
+ IDS_PHYSICAL_WEB_UI_SCANNING_MESSAGE);
source->SetJsonPath("strings.js");
source->AddResourcePath(physical_web_ui::kPhysicalWebJS,
IDR_PHYSICAL_WEB_UI_JS);

Powered by Google App Engine
This is Rietveld 408576698