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

Unified Diff: chrome/browser/chromeos/app_mode/kiosk_app_data.cc

Issue 1693383003: ChromeOS cryptohome should be able to use gaia id as user identifier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed unit tests. Created 4 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/chromeos/app_mode/kiosk_app_data.cc
diff --git a/chrome/browser/chromeos/app_mode/kiosk_app_data.cc b/chrome/browser/chromeos/app_mode/kiosk_app_data.cc
index ed463867e4bfab71e4b3cdfeaebe7d21f6fac437..0cb0c989ac6267c6d54ff3f2e6b167465addcf2d 100644
--- a/chrome/browser/chromeos/app_mode/kiosk_app_data.cc
+++ b/chrome/browser/chromeos/app_mode/kiosk_app_data.cc
@@ -395,14 +395,13 @@ class KioskAppData::WebstoreDataParser
KioskAppData::KioskAppData(KioskAppDataDelegate* delegate,
const std::string& app_id,
- const std::string& user_id,
+ const AccountId& account_id,
const GURL& update_url)
: delegate_(delegate),
status_(STATUS_INIT),
app_id_(app_id),
- user_id_(user_id),
- update_url_(update_url) {
-}
+ account_id_(account_id),
+ update_url_(update_url) {}
KioskAppData::~KioskAppData() {}
« no previous file with comments | « chrome/browser/chromeos/app_mode/kiosk_app_data.h ('k') | chrome/browser/chromeos/app_mode/kiosk_app_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698