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

Side by Side Diff: extensions/common/api/system_display.idl

Issue 389633002: Move system.* family of APIs to extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Inlined simple getters and removed redundant namespace decl Created 6 years, 3 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 // Use the <code>system.display</code> API to query display metadata. 5 // Use the <code>system.display</code> API to query display metadata.
6 namespace system.display { 6 namespace system.display {
7 7
8 dictionary Bounds { 8 dictionary Bounds {
9 // The x-coordinate of the upper-left corner. 9 // The x-coordinate of the upper-left corner.
10 long left; 10 long left;
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 DOMString id, 141 DOMString id,
142 DisplayProperties info, 142 DisplayProperties info,
143 optional SetDisplayUnitInfoCallback callback); 143 optional SetDisplayUnitInfoCallback callback);
144 }; 144 };
145 145
146 interface Events { 146 interface Events {
147 // Fired when anything changes to the display configuration. 147 // Fired when anything changes to the display configuration.
148 static void onDisplayChanged(); 148 static void onDisplayChanged();
149 }; 149 };
150 }; 150 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698