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

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

Issue 206093005: Oilpan: move Console objects to the oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make ConsoleBase::trace() a pure virtual 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
« no previous file with comments | « Source/core/frame/ConsoleBase.idl ('k') | Source/core/workers/WorkerConsole.h » ('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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 HashSet<DOMWindowProperty*> m_properties; 344 HashSet<DOMWindowProperty*> m_properties;
345 345
346 mutable RefPtrWillBePersistent<Screen> m_screen; 346 mutable RefPtrWillBePersistent<Screen> m_screen;
347 mutable RefPtrWillBePersistent<History> m_history; 347 mutable RefPtrWillBePersistent<History> m_history;
348 mutable RefPtr<BarProp> m_locationbar; 348 mutable RefPtr<BarProp> m_locationbar;
349 mutable RefPtr<BarProp> m_menubar; 349 mutable RefPtr<BarProp> m_menubar;
350 mutable RefPtr<BarProp> m_personalbar; 350 mutable RefPtr<BarProp> m_personalbar;
351 mutable RefPtr<BarProp> m_scrollbars; 351 mutable RefPtr<BarProp> m_scrollbars;
352 mutable RefPtr<BarProp> m_statusbar; 352 mutable RefPtr<BarProp> m_statusbar;
353 mutable RefPtr<BarProp> m_toolbar; 353 mutable RefPtr<BarProp> m_toolbar;
354 mutable RefPtr<Console> m_console; 354 mutable RefPtrWillBePersistent<Console> m_console;
355 mutable RefPtrWillBePersistent<Navigator> m_navigator; 355 mutable RefPtrWillBePersistent<Navigator> m_navigator;
356 mutable RefPtrWillBePersistent<Location> m_location; 356 mutable RefPtrWillBePersistent<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;
(...skipping 12 matching lines...) Expand all
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
OLDNEW
« no previous file with comments | « Source/core/frame/ConsoleBase.idl ('k') | Source/core/workers/WorkerConsole.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698