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

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

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 | « no previous file | Source/core/frame/Screen.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/Screen.h
diff --git a/Source/core/frame/Screen.h b/Source/core/frame/Screen.h
index cd7c03e9beb910607a7dcb125ab120b89177e1c0..c6caa4e74e54252f723f29a66c17bcf9f99d6390 100644
--- a/Source/core/frame/Screen.h
+++ b/Source/core/frame/Screen.h
@@ -48,14 +48,14 @@ public:
return new Screen(frame);
}
- unsigned height() const;
- unsigned width() const;
+ int height() const;
+ int width() const;
unsigned colorDepth() const;
unsigned pixelDepth() const;
int availLeft() const;
int availTop() const;
- unsigned availHeight() const;
- unsigned availWidth() const;
+ int availHeight() const;
+ int availWidth() const;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « no previous file | Source/core/frame/Screen.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698