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

Side by Side Diff: Source/core/frame/Screen.cpp

Issue 879913003: Use IntRect instead of FloatRect for window positions and sizes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: added FIXME comments Created 5 years, 10 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
« no previous file with comments | « Source/core/frame/RemoteDOMWindow.cpp ('k') | Source/core/frame/Window.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 18 matching lines...) Expand all
29 29
30 #include "config.h" 30 #include "config.h"
31 #include "core/frame/Screen.h" 31 #include "core/frame/Screen.h"
32 32
33 #include "core/frame/FrameHost.h" 33 #include "core/frame/FrameHost.h"
34 #include "core/frame/FrameView.h" 34 #include "core/frame/FrameView.h"
35 #include "core/frame/LocalFrame.h" 35 #include "core/frame/LocalFrame.h"
36 #include "core/frame/Settings.h" 36 #include "core/frame/Settings.h"
37 #include "core/inspector/InspectorInstrumentation.h" 37 #include "core/inspector/InspectorInstrumentation.h"
38 #include "platform/PlatformScreen.h" 38 #include "platform/PlatformScreen.h"
39 #include "platform/geometry/FloatRect.h"
40 39
41 namespace blink { 40 namespace blink {
42 41
43 Screen::Screen(LocalFrame* frame) 42 Screen::Screen(LocalFrame* frame)
44 : DOMWindowProperty(frame) 43 : DOMWindowProperty(frame)
45 { 44 {
46 } 45 }
47 46
48 unsigned Screen::height() const 47 unsigned Screen::height() const
49 { 48 {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 120
122 void Screen::trace(Visitor* visitor) 121 void Screen::trace(Visitor* visitor)
123 { 122 {
124 #if ENABLE(OILPAN) 123 #if ENABLE(OILPAN)
125 HeapSupplementable<Screen>::trace(visitor); 124 HeapSupplementable<Screen>::trace(visitor);
126 #endif 125 #endif
127 DOMWindowProperty::trace(visitor); 126 DOMWindowProperty::trace(visitor);
128 } 127 }
129 128
130 } // namespace blink 129 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/frame/RemoteDOMWindow.cpp ('k') | Source/core/frame/Window.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698