OLD | NEW |
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 namespace autotestPrivate { |
8 | 8 |
9 dictionary LoginStatusDict { | 9 dictionary LoginStatusDict { |
10 // Are we logged in? | 10 // Are we logged in? |
11 boolean isLoggedIn; | 11 boolean isLoggedIn; |
12 // Is the logged-in user the owner? | 12 // Is the logged-in user the owner? |
13 boolean isOwner; | 13 boolean isOwner; |
14 // Is the screen locked? | 14 // Is the screen locked? |
15 boolean isScreenLocked; | 15 boolean isScreenLocked; |
16 | 16 |
17 // Is the logged-in user a regular user? | 17 // Is the logged-in user a regular user? |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 | 98 |
99 // Set the mouse pointer sensitivity setting. | 99 // Set the mouse pointer sensitivity setting. |
100 // |value|: the pointer sensitivity setting index. | 100 // |value|: the pointer sensitivity setting index. |
101 static void setMouseSensitivity(long value); | 101 static void setMouseSensitivity(long value); |
102 | 102 |
103 // Swap the primary mouse button for left click. | 103 // Swap the primary mouse button for left click. |
104 // |right|: if set, swap the primary mouse button. | 104 // |right|: if set, swap the primary mouse button. |
105 static void setPrimaryButtonRight(boolean right); | 105 static void setPrimaryButtonRight(boolean right); |
106 }; | 106 }; |
107 }; | 107 }; |
OLD | NEW |