Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: Source/core/frame/DOMWindow.h

Issue 331623002: Oilpan: Prepare to move EventQueue and its subclasses to Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 String m_defaultStatus; 383 String m_defaultStatus;
384 384
385 mutable RefPtrWillBeMember<Storage> m_sessionStorage; 385 mutable RefPtrWillBeMember<Storage> m_sessionStorage;
386 mutable RefPtrWillBeMember<Storage> m_localStorage; 386 mutable RefPtrWillBeMember<Storage> m_localStorage;
387 mutable RefPtrWillBeMember<ApplicationCache> m_applicationCache; 387 mutable RefPtrWillBeMember<ApplicationCache> m_applicationCache;
388 388
389 mutable RefPtrWillBeMember<Performance> m_performance; 389 mutable RefPtrWillBeMember<Performance> m_performance;
390 390
391 mutable RefPtrWillBeMember<DOMWindowCSS> m_css; 391 mutable RefPtrWillBeMember<DOMWindowCSS> m_css;
392 392
393 RefPtr<DOMWindowEventQueue> m_eventQueue; 393 RefPtrWillBeMember<DOMWindowEventQueue> m_eventQueue;
394 RefPtr<SerializedScriptValue> m_pendingStateObject; 394 RefPtr<SerializedScriptValue> m_pendingStateObject;
395 }; 395 };
396 396
397 inline String DOMWindow::status() const 397 inline String DOMWindow::status() const
398 { 398 {
399 return m_status; 399 return m_status;
400 } 400 }
401 401
402 inline String DOMWindow::defaultStatus() const 402 inline String DOMWindow::defaultStatus() const
403 { 403 {
404 return m_defaultStatus; 404 return m_defaultStatus;
405 } 405 }
406 406
407 } // namespace WebCore 407 } // namespace WebCore
408 408
409 #endif // DOMWindow_h 409 #endif // DOMWindow_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698