| 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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 mutable RefPtr<Location> m_location; | 356 mutable RefPtr<Location> m_location; |
| 357 mutable RefPtr<StyleMedia> m_media; | 357 mutable RefPtr<StyleMedia> m_media; |
| 358 | 358 |
| 359 String m_status; | 359 String m_status; |
| 360 String m_defaultStatus; | 360 String m_defaultStatus; |
| 361 | 361 |
| 362 mutable RefPtrWillBePersistent<Storage> m_sessionStorage; | 362 mutable RefPtrWillBePersistent<Storage> m_sessionStorage; |
| 363 mutable RefPtrWillBePersistent<Storage> m_localStorage; | 363 mutable RefPtrWillBePersistent<Storage> m_localStorage; |
| 364 mutable RefPtr<ApplicationCache> m_applicationCache; | 364 mutable RefPtr<ApplicationCache> m_applicationCache; |
| 365 | 365 |
| 366 mutable RefPtr<Performance> m_performance; | 366 mutable RefPtrWillBePersistent<Performance> m_performance; |
| 367 | 367 |
| 368 mutable RefPtr<DOMWindowCSS> m_css; | 368 mutable RefPtr<DOMWindowCSS> m_css; |
| 369 | 369 |
| 370 RefPtr<DOMWindowEventQueue> m_eventQueue; | 370 RefPtr<DOMWindowEventQueue> m_eventQueue; |
| 371 RefPtr<SerializedScriptValue> m_pendingStateObject; | 371 RefPtr<SerializedScriptValue> m_pendingStateObject; |
| 372 }; | 372 }; |
| 373 | 373 |
| 374 inline String DOMWindow::status() const | 374 inline String DOMWindow::status() const |
| 375 { | 375 { |
| 376 return m_status; | 376 return m_status; |
| 377 } | 377 } |
| 378 | 378 |
| 379 inline String DOMWindow::defaultStatus() const | 379 inline String DOMWindow::defaultStatus() const |
| 380 { | 380 { |
| 381 return m_defaultStatus; | 381 return m_defaultStatus; |
| 382 } | 382 } |
| 383 | 383 |
| 384 } // namespace WebCore | 384 } // namespace WebCore |
| 385 | 385 |
| 386 #endif // DOMWindow_h | 386 #endif // DOMWindow_h |
| OLD | NEW |