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

Unified Diff: chrome/common/extensions/api/experimental_system_info_display.idl

Issue 15907021: Delete experimental API definition file for systemInfo.display. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/common/extensions/docs/templates/public/apps/experimental_systemInfo_display.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/experimental_system_info_display.idl
diff --git a/chrome/common/extensions/api/experimental_system_info_display.idl b/chrome/common/extensions/api/experimental_system_info_display.idl
deleted file mode 100644
index 4d45bb0bdead3006b46e677b2f5bf63c5fa83e6b..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/api/experimental_system_info_display.idl
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// File-level comment to appease parser. Eventually this will not be necessary.
-namespace experimental.systemInfo.display {
-
- dictionary DisplayUnitInfo {
- // The unique identifier of the display device.
- DOMString id;
- // The ordinal index for each display device.
- long index;
- // True if the display is the primary one.
- boolean isPrimary;
- // The y-coordinate of the upper-left corner of the work area on the
- // display's screen.
- long availTop;
- // The x-coordinate of the upper-left corner of the work area on the
- // display's screen.
- long availLeft;
- // The height of the work area on the display's screen in pixels.
- long availHeight;
- // The width of the work area on the display's screen in pixels.
- long availWidth;
- // The color depth of the display's screen.
- long colorDepth;
- // The pixel depth of the display's screen.
- long pixelDepth;
- // The height of the display's screen in pixels.
- long height;
- // The width of the display's screen in pixels.
- long width;
- // The absolute offset of the upper-left corner of the display's screen in
- // the virtual-screen coordinate.
- long absoluteTopOffset;
- // The absolute offset of the upper-left corner of the display's screen in
- // the virtual-screen coodinate.
- long absoluteLeftOffset;
- // The number of pixel per logic inch along the display's screen width.
- long dpiX;
- // The number of pixel per logic inch along the display's screen height.
- long dpiY;
- };
-
- callback DisplayInfoCallback = void (DisplayUnitInfo[] info);
-
- interface Functions {
- // Get all display information on the system. The argument passed to the
- // callback is an array of DisplayUnitInfo objects.
- static void get(DisplayInfoCallback callback);
- };
-};
« no previous file with comments | « no previous file | chrome/common/extensions/docs/templates/public/apps/experimental_systemInfo_display.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698