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

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

Issue 214503002: [oilpan]: Move DOMWindowCSS to the oilpan heap using transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 9 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
« no previous file with comments | « Source/core/css/DOMWindowCSS.cpp ('k') | Source/core/frame/DOMWindow.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « Source/core/css/DOMWindowCSS.cpp ('k') | Source/core/frame/DOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698