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

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

Issue 1063513007: Oilpan: have Console be on the heap by default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Console public inherits DOMWindowProperty Created 5 years, 8 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/frame/ConsoleBase.idl ('k') | Source/core/timing/ConsoleMemory.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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 WillBeHeapHashSet<RawPtrWillBeWeakMember<DOMWindowProperty>> m_properties; 257 WillBeHeapHashSet<RawPtrWillBeWeakMember<DOMWindowProperty>> m_properties;
258 258
259 mutable PersistentWillBeMember<Screen> m_screen; 259 mutable PersistentWillBeMember<Screen> m_screen;
260 mutable PersistentWillBeMember<History> m_history; 260 mutable PersistentWillBeMember<History> m_history;
261 mutable RefPtrWillBeMember<BarProp> m_locationbar; 261 mutable RefPtrWillBeMember<BarProp> m_locationbar;
262 mutable RefPtrWillBeMember<BarProp> m_menubar; 262 mutable RefPtrWillBeMember<BarProp> m_menubar;
263 mutable RefPtrWillBeMember<BarProp> m_personalbar; 263 mutable RefPtrWillBeMember<BarProp> m_personalbar;
264 mutable RefPtrWillBeMember<BarProp> m_scrollbars; 264 mutable RefPtrWillBeMember<BarProp> m_scrollbars;
265 mutable RefPtrWillBeMember<BarProp> m_statusbar; 265 mutable RefPtrWillBeMember<BarProp> m_statusbar;
266 mutable RefPtrWillBeMember<BarProp> m_toolbar; 266 mutable RefPtrWillBeMember<BarProp> m_toolbar;
267 mutable RefPtrWillBeMember<Console> m_console; 267 mutable PersistentWillBeMember<Console> m_console;
268 mutable RefPtrWillBeMember<Navigator> m_navigator; 268 mutable RefPtrWillBeMember<Navigator> m_navigator;
269 mutable RefPtrWillBeMember<StyleMedia> m_media; 269 mutable RefPtrWillBeMember<StyleMedia> m_media;
270 270
271 String m_status; 271 String m_status;
272 String m_defaultStatus; 272 String m_defaultStatus;
273 273
274 mutable RefPtrWillBeMember<ApplicationCache> m_applicationCache; 274 mutable RefPtrWillBeMember<ApplicationCache> m_applicationCache;
275 275
276 mutable RefPtrWillBeMember<DOMWindowCSS> m_css; 276 mutable RefPtrWillBeMember<DOMWindowCSS> m_css;
277 277
(...skipping 11 matching lines...) Expand all
289 } 289 }
290 290
291 inline String LocalDOMWindow::defaultStatus() const 291 inline String LocalDOMWindow::defaultStatus() const
292 { 292 {
293 return m_defaultStatus; 293 return m_defaultStatus;
294 } 294 }
295 295
296 } // namespace blink 296 } // namespace blink
297 297
298 #endif // LocalDOMWindow_h 298 #endif // LocalDOMWindow_h
OLDNEW
« no previous file with comments | « Source/core/frame/ConsoleBase.idl ('k') | Source/core/timing/ConsoleMemory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698