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

Unified Diff: Source/core/frame/Screen.idl

Issue 1197733002: Screen attribute availWidth/availHeight/width/height type changed to long (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 | « Source/core/frame/Screen.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/Screen.idl
diff --git a/Source/core/frame/Screen.idl b/Source/core/frame/Screen.idl
index 675d000890e1c57128ac089264d19666ab0a66e1..33d9afc799469e6e005aef8946a6d712fcb9e386 100644
--- a/Source/core/frame/Screen.idl
+++ b/Source/core/frame/Screen.idl
@@ -31,11 +31,10 @@
[
GarbageCollected,
] interface Screen {
- // TODO(philipj): availWidth/availHeight/width/height should not be unsigned.
- readonly attribute unsigned long availWidth;
- readonly attribute unsigned long availHeight;
- readonly attribute unsigned long width;
- readonly attribute unsigned long height;
+ readonly attribute long availWidth;
+ readonly attribute long availHeight;
+ readonly attribute long width;
+ readonly attribute long height;
readonly attribute unsigned long colorDepth;
readonly attribute unsigned long pixelDepth;
« no previous file with comments | « Source/core/frame/Screen.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698