| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |