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

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

Issue 1848103005: [Extensions] Remove the "use_movable_types" entry from idl/json files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // Control and monitor the screen locker. 5 // Control and monitor the screen locker.
6 [permissions=screenlockPrivate, nodoc, use_movable_types=true] 6 [permissions=screenlockPrivate, nodoc]
7 namespace screenlockPrivate { 7 namespace screenlockPrivate {
8 // Supported authentication types shown on the user pod. 8 // Supported authentication types shown on the user pod.
9 // |offlinePassword|: The standard password field, which authenticates using 9 // |offlinePassword|: The standard password field, which authenticates using
10 // the user's regular password. The $(ref:onAuthAttempted)() 10 // the user's regular password. The $(ref:onAuthAttempted)()
11 // event will not be fired for this authentication type. 11 // event will not be fired for this authentication type.
12 // |numericPin|: An input field for a 4 digit numeric pin code. 12 // |numericPin|: An input field for a 4 digit numeric pin code.
13 // |userClick|: Makes the user pod clickable when it is focused, and 13 // |userClick|: Makes the user pod clickable when it is focused, and
14 // clicking on it attempts the authentication. If |value| is 14 // clicking on it attempts the authentication. If |value| is
15 // specified with $(ref:setAuthType)(), the text is displayed 15 // specified with $(ref:setAuthType)(), the text is displayed
16 // in the password field. 16 // in the password field.
(...skipping 17 matching lines...) Expand all
34 // Fires whenever the screen is locked or unlocked. 34 // Fires whenever the screen is locked or unlocked.
35 static void onChanged(boolean locked); 35 static void onChanged(boolean locked);
36 36
37 // Fires when the user attempts to authenticate with the user's input. 37 // Fires when the user attempts to authenticate with the user's input.
38 // There will be at most one auth attempt active at any time. 38 // There will be at most one auth attempt active at any time.
39 // Call $(ref:acceptAuthAttempt)() to accept or reject this attempt. 39 // Call $(ref:acceptAuthAttempt)() to accept or reject this attempt.
40 // Note: Some authentication types will not have an input. 40 // Note: Some authentication types will not have an input.
41 static void onAuthAttempted(AuthType type, DOMString input); 41 static void onAuthAttempted(AuthType type, DOMString input);
42 }; 42 };
43 }; 43 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698