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

Side by Side Diff: chrome/common/extensions/api/autotest_private.idl

Issue 13520005: autotestPrivate.loginStatus returns a dictionary instead of a string. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // API for integration testing. To be used on test images with a test component 5 // API for integration testing. To be used on test images with a test component
6 // extension. 6 // extension.
7 [nodoc] namespace autotestPrivate { 7 [nodoc] namespace autotestPrivate {
8 8
9 callback LoginStatusCallback = void (DOMString status); 9 dictionary LoginStatusDict {
10 // Are we logged in?
11 boolean isLoggedIn;
12 // Is the logged-in user the owner?
13 boolean isOwner;
14 // Is the screen locked?
15 boolean isScreenLocked;
16
17 // Is the logged-in user a regular user?
18 boolean isRegularUser;
19 // Are we logged into the guest account?
20 boolean isGuest;
21 // Are we logged into kiosk-app mode?
22 boolean isKiosk;
23
24 DOMString email;
25 DOMString displayEmail;
26 // User image: 'file', 'profile' or a number.
27 DOMString userImage;
28 };
29 callback LoginStatusCallback = void (LoginStatusDict status);
10 30
11 interface Functions { 31 interface Functions {
12 // Logout of a user session. 32 // Logout of a user session.
13 static void logout(); 33 static void logout();
14 34
15 // Restart the browser. 35 // Restart the browser.
16 static void restart(); 36 static void restart();
17 37
18 // Shutdown the browser. 38 // Shutdown the browser.
19 // |force|: if set, ignore ongoing downloads and onunbeforeunload handlers. 39 // |force|: if set, ignore ongoing downloads and onunbeforeunload handlers.
20 static void shutdown(boolean force); 40 static void shutdown(boolean force);
21 41
22 // Get login status. 42 // Get login status.
23 static void loginStatus(LoginStatusCallback callback); 43 static void loginStatus(LoginStatusCallback callback);
24 }; 44 };
25 }; 45 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698