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

Side by Side Diff: components/signin/public/interfaces/account_id.mojom

Issue 2617763003: Add a mojo interface for AccountId (Closed)
Patch Set: rebase Created 3 years, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module signin.mojom;
6
7 // Matches AccountType of AccountId.
8 enum AccountType {
9 UNKNOWN,
10 GOOGLE,
11 ACTIVE_DIRECTORY,
12 };
13
14 // Mirror of AccountId in Mojo.
15 struct AccountId {
16 AccountType account_type;
17 string id;
18 string user_email;
19 };
OLDNEW
« no previous file with comments | « components/signin/public/interfaces/OWNERS ('k') | components/signin/public/interfaces/account_id.typemap » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698