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

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

Issue 754693004: Cleanup: remove the namespace-level nodoc annotations from Extension API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « no previous file | chrome/common/extensions/api/browser.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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
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 };
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/api/browser.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698