OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 virtual LocalFrame* frame() const override; | 84 virtual LocalFrame* frame() const override; |
85 Screen* screen() const override; | 85 Screen* screen() const override; |
86 History* history() const override; | 86 History* history() const override; |
87 BarProp* locationbar() const override; | 87 BarProp* locationbar() const override; |
88 BarProp* menubar() const override; | 88 BarProp* menubar() const override; |
89 BarProp* personalbar() const override; | 89 BarProp* personalbar() const override; |
90 BarProp* scrollbars() const override; | 90 BarProp* scrollbars() const override; |
91 BarProp* statusbar() const override; | 91 BarProp* statusbar() const override; |
92 BarProp* toolbar() const override; | 92 BarProp* toolbar() const override; |
93 Navigator* navigator() const override; | 93 Navigator* navigator() const override; |
94 Location* location() const override; | |
95 bool offscreenBuffering() const override; | 94 bool offscreenBuffering() const override; |
96 int outerHeight() const override; | 95 int outerHeight() const override; |
97 int outerWidth() const override; | 96 int outerWidth() const override; |
98 int innerHeight() const override; | 97 int innerHeight() const override; |
99 int innerWidth() const override; | 98 int innerWidth() const override; |
100 int screenX() const override; | 99 int screenX() const override; |
101 int screenY() const override; | 100 int screenY() const override; |
102 double scrollX() const override; | 101 double scrollX() const override; |
103 double scrollY() const override; | 102 double scrollY() const override; |
104 const AtomicString& name() const override; | 103 const AtomicString& name() const override; |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
282 mutable RefPtrWillBeMember<Screen> m_screen; | 281 mutable RefPtrWillBeMember<Screen> m_screen; |
283 mutable RefPtrWillBeMember<History> m_history; | 282 mutable RefPtrWillBeMember<History> m_history; |
284 mutable RefPtrWillBeMember<BarProp> m_locationbar; | 283 mutable RefPtrWillBeMember<BarProp> m_locationbar; |
285 mutable RefPtrWillBeMember<BarProp> m_menubar; | 284 mutable RefPtrWillBeMember<BarProp> m_menubar; |
286 mutable RefPtrWillBeMember<BarProp> m_personalbar; | 285 mutable RefPtrWillBeMember<BarProp> m_personalbar; |
287 mutable RefPtrWillBeMember<BarProp> m_scrollbars; | 286 mutable RefPtrWillBeMember<BarProp> m_scrollbars; |
288 mutable RefPtrWillBeMember<BarProp> m_statusbar; | 287 mutable RefPtrWillBeMember<BarProp> m_statusbar; |
289 mutable RefPtrWillBeMember<BarProp> m_toolbar; | 288 mutable RefPtrWillBeMember<BarProp> m_toolbar; |
290 mutable RefPtrWillBeMember<Console> m_console; | 289 mutable RefPtrWillBeMember<Console> m_console; |
291 mutable RefPtrWillBeMember<Navigator> m_navigator; | 290 mutable RefPtrWillBeMember<Navigator> m_navigator; |
292 mutable RefPtrWillBeMember<Location> m_location; | |
293 mutable RefPtrWillBeMember<StyleMedia> m_media; | 291 mutable RefPtrWillBeMember<StyleMedia> m_media; |
294 | 292 |
295 String m_status; | 293 String m_status; |
296 String m_defaultStatus; | 294 String m_defaultStatus; |
297 | 295 |
298 mutable RefPtrWillBeMember<ApplicationCache> m_applicationCache; | 296 mutable RefPtrWillBeMember<ApplicationCache> m_applicationCache; |
299 | 297 |
300 mutable RefPtrWillBeMember<Performance> m_performance; | 298 mutable RefPtrWillBeMember<Performance> m_performance; |
301 | 299 |
302 mutable RefPtrWillBeMember<DOMWindowCSS> m_css; | 300 mutable RefPtrWillBeMember<DOMWindowCSS> m_css; |
(...skipping 12 matching lines...) Expand all Loading... |
315 } | 313 } |
316 | 314 |
317 inline String LocalDOMWindow::defaultStatus() const | 315 inline String LocalDOMWindow::defaultStatus() const |
318 { | 316 { |
319 return m_defaultStatus; | 317 return m_defaultStatus; |
320 } | 318 } |
321 | 319 |
322 } // namespace blink | 320 } // namespace blink |
323 | 321 |
324 #endif // LocalDOMWindow_h | 322 #endif // LocalDOMWindow_h |
OLD | NEW |