| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 | 364 |
| 365 String m_status; | 365 String m_status; |
| 366 String m_defaultStatus; | 366 String m_defaultStatus; |
| 367 | 367 |
| 368 mutable RefPtrWillBeMember<Storage> m_sessionStorage; | 368 mutable RefPtrWillBeMember<Storage> m_sessionStorage; |
| 369 mutable RefPtrWillBeMember<Storage> m_localStorage; | 369 mutable RefPtrWillBeMember<Storage> m_localStorage; |
| 370 mutable RefPtrWillBeMember<ApplicationCache> m_applicationCache; | 370 mutable RefPtrWillBeMember<ApplicationCache> m_applicationCache; |
| 371 | 371 |
| 372 mutable RefPtrWillBeMember<Performance> m_performance; | 372 mutable RefPtrWillBeMember<Performance> m_performance; |
| 373 | 373 |
| 374 mutable RefPtr<DOMWindowCSS> m_css; | 374 mutable RefPtrWillBeMember<DOMWindowCSS> m_css; |
| 375 | 375 |
| 376 RefPtr<DOMWindowEventQueue> m_eventQueue; | 376 RefPtr<DOMWindowEventQueue> m_eventQueue; |
| 377 RefPtr<SerializedScriptValue> m_pendingStateObject; | 377 RefPtr<SerializedScriptValue> m_pendingStateObject; |
| 378 }; | 378 }; |
| 379 | 379 |
| 380 inline String DOMWindow::status() const | 380 inline String DOMWindow::status() const |
| 381 { | 381 { |
| 382 return m_status; | 382 return m_status; |
| 383 } | 383 } |
| 384 | 384 |
| 385 inline String DOMWindow::defaultStatus() const | 385 inline String DOMWindow::defaultStatus() const |
| 386 { | 386 { |
| 387 return m_defaultStatus; | 387 return m_defaultStatus; |
| 388 } | 388 } |
| 389 | 389 |
| 390 } // namespace WebCore | 390 } // namespace WebCore |
| 391 | 391 |
| 392 #endif // DOMWindow_h | 392 #endif // DOMWindow_h |
| OLD | NEW |