Chromium Code Reviews| Index: chrome/common/extensions/api/autotest_private.idl |
| =================================================================== |
| --- chrome/common/extensions/api/autotest_private.idl (revision 191644) |
| +++ chrome/common/extensions/api/autotest_private.idl (working copy) |
| @@ -6,8 +6,21 @@ |
| // extension. |
| [nodoc] namespace autotestPrivate { |
| - callback LoginStatusCallback = void (DOMString status); |
| + dictionary LoginStatusDict { |
| + boolean isLoggedIn; |
| + boolean isOwner; |
| + boolean isScreenLocked; |
| + boolean isRegularUser; |
| + boolean isGuest; |
| + boolean isKiosk; |
| + |
| + DOMString email; |
| + DOMString displayEmail; |
| + DOMString userImage; |
|
Matt Perry
2013/04/04 00:56:18
Might want to comment these properties to make it
achuithb
2013/04/04 17:58:06
Done.
|
| + }; |
| + callback LoginStatusCallback = void (LoginStatusDict status); |
| + |
| interface Functions { |
| // Logout of a user session. |
| static void logout(); |