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

Unified Diff: chrome/browser/ui/webui/options/chromeos/kiosk_apps_handler.cc

Issue 14927015: Translate device-local account IDs to user IDs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix forward declaration. Created 7 years, 7 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/options/chromeos/kiosk_apps_handler.cc
diff --git a/chrome/browser/ui/webui/options/chromeos/kiosk_apps_handler.cc b/chrome/browser/ui/webui/options/chromeos/kiosk_apps_handler.cc
index f813d2c91abd504162f3e73d52a20da7d30454b0..7c7ee913145938c0592e8ed7f6e563755ed436c1 100644
--- a/chrome/browser/ui/webui/options/chromeos/kiosk_apps_handler.cc
+++ b/chrome/browser/ui/webui/options/chromeos/kiosk_apps_handler.cc
@@ -39,12 +39,12 @@ void PopulateAppDict(const KioskAppManager::App& app_data,
if (!app_data.icon.isNull())
icon_url = webui::GetBitmapDataUrl(*app_data.icon.bitmap());
- app_dict->SetString("id", app_data.id);
+ app_dict->SetString("id", app_data.app_id);
app_dict->SetString("name", app_data.name);
app_dict->SetString("iconURL", icon_url);
app_dict->SetBoolean(
"autoLaunch",
- KioskAppManager::Get()->GetAutoLaunchApp() == app_data.id);
+ KioskAppManager::Get()->GetAutoLaunchApp() == app_data.app_id);
app_dict->SetBoolean("isLoading", app_data.is_loading);
}
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/kiosk_app_menu_handler.cc ('k') | chrome/browser/ui/webui/policy_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698