| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 | 256 |
| 257 mutable PersistentWillBeMember<Screen> m_screen; | 257 mutable PersistentWillBeMember<Screen> m_screen; |
| 258 mutable PersistentWillBeMember<History> m_history; | 258 mutable PersistentWillBeMember<History> m_history; |
| 259 mutable RefPtrWillBeMember<BarProp> m_locationbar; | 259 mutable RefPtrWillBeMember<BarProp> m_locationbar; |
| 260 mutable RefPtrWillBeMember<BarProp> m_menubar; | 260 mutable RefPtrWillBeMember<BarProp> m_menubar; |
| 261 mutable RefPtrWillBeMember<BarProp> m_personalbar; | 261 mutable RefPtrWillBeMember<BarProp> m_personalbar; |
| 262 mutable RefPtrWillBeMember<BarProp> m_scrollbars; | 262 mutable RefPtrWillBeMember<BarProp> m_scrollbars; |
| 263 mutable RefPtrWillBeMember<BarProp> m_statusbar; | 263 mutable RefPtrWillBeMember<BarProp> m_statusbar; |
| 264 mutable RefPtrWillBeMember<BarProp> m_toolbar; | 264 mutable RefPtrWillBeMember<BarProp> m_toolbar; |
| 265 mutable PersistentWillBeMember<Console> m_console; | 265 mutable PersistentWillBeMember<Console> m_console; |
| 266 mutable RefPtrWillBeMember<Navigator> m_navigator; | 266 mutable PersistentWillBeMember<Navigator> m_navigator; |
| 267 mutable RefPtrWillBeMember<StyleMedia> m_media; | 267 mutable RefPtrWillBeMember<StyleMedia> m_media; |
| 268 | 268 |
| 269 String m_status; | 269 String m_status; |
| 270 String m_defaultStatus; | 270 String m_defaultStatus; |
| 271 | 271 |
| 272 mutable RefPtrWillBeMember<ApplicationCache> m_applicationCache; | 272 mutable RefPtrWillBeMember<ApplicationCache> m_applicationCache; |
| 273 | 273 |
| 274 mutable RefPtrWillBeMember<DOMWindowCSS> m_css; | 274 mutable RefPtrWillBeMember<DOMWindowCSS> m_css; |
| 275 | 275 |
| 276 RefPtrWillBeMember<DOMWindowEventQueue> m_eventQueue; | 276 RefPtrWillBeMember<DOMWindowEventQueue> m_eventQueue; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 287 } | 287 } |
| 288 | 288 |
| 289 inline String LocalDOMWindow::defaultStatus() const | 289 inline String LocalDOMWindow::defaultStatus() const |
| 290 { | 290 { |
| 291 return m_defaultStatus; | 291 return m_defaultStatus; |
| 292 } | 292 } |
| 293 | 293 |
| 294 } // namespace blink | 294 } // namespace blink |
| 295 | 295 |
| 296 #endif // LocalDOMWindow_h | 296 #endif // LocalDOMWindow_h |
| OLD | NEW |