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

Unified Diff: Source/web/x11/WebScreenInfoFactory.cpp

Issue 207783002: Omit "int" when using "unsigned" modifier (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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/web/WebInputEventFactoryGtk.cpp ('k') | Source/wtf/StringExtrasTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/x11/WebScreenInfoFactory.cpp
diff --git a/Source/web/x11/WebScreenInfoFactory.cpp b/Source/web/x11/WebScreenInfoFactory.cpp
index 1bed7b689fa5b0a53eb6159ad04eec5c2bd16025..bf87572cc7386e8251b0ae86076aaca1633f2763 100644
--- a/Source/web/x11/WebScreenInfoFactory.cpp
+++ b/Source/web/x11/WebScreenInfoFactory.cpp
@@ -48,7 +48,7 @@ WebScreenInfo WebScreenInfoFactory::screenInfo(Display* display, int screenNumbe
Window root = RootWindow(display, screenNumber);
Window rootRet;
int x, y;
- unsigned int width, height, border, depth;
+ unsigned width, height, border, depth;
XGetGeometry(
display, root, &rootRet, &x, &y, &width, &height, &border, &depth);
« no previous file with comments | « Source/web/WebInputEventFactoryGtk.cpp ('k') | Source/wtf/StringExtrasTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698