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

Side by Side Diff: extensions/common/api/app_current_window_internal.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 | « chrome/common/extensions/api/webrtc_logging_private.idl ('k') | no next file » | 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 // This is used by the app window API internally to pass through messages to 5 // This is used by the app window API internally to pass through messages to
6 // the shell window. 6 // the shell window.
7 [nodoc] namespace app.currentWindowInternal { 7 namespace app.currentWindowInternal {
8 8
9 // Null or undefined indicates that a value should not change. 9 // Null or undefined indicates that a value should not change.
10 dictionary Bounds { 10 dictionary Bounds {
11 long? left; 11 long? left;
12 long? top; 12 long? top;
13 long? width; 13 long? width;
14 long? height; 14 long? height;
15 }; 15 };
16 16
17 // Null or undefined indicates that a value should not change. A value of 0 17 // Null or undefined indicates that a value should not change. A value of 0
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 static void onBoundsChanged(); 61 static void onBoundsChanged();
62 static void onFullscreened(); 62 static void onFullscreened();
63 static void onMinimized(); 63 static void onMinimized();
64 static void onMaximized(); 64 static void onMaximized();
65 static void onRestored(); 65 static void onRestored();
66 static void onAlphaEnabledChanged(); 66 static void onAlphaEnabledChanged();
67 // Only sent in tests. 67 // Only sent in tests.
68 static void onWindowShownForTests(); 68 static void onWindowShownForTests();
69 }; 69 };
70 }; 70 };
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/webrtc_logging_private.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698