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

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

Issue 1194003004: Oilpan: enable appcache + move DocumentLoader to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased Created 5 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
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/frame/LocalDOMWindow.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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 mutable RefPtrWillBeMember<BarProp> m_scrollbars; 262 mutable RefPtrWillBeMember<BarProp> m_scrollbars;
263 mutable RefPtrWillBeMember<BarProp> m_statusbar; 263 mutable RefPtrWillBeMember<BarProp> m_statusbar;
264 mutable RefPtrWillBeMember<BarProp> m_toolbar; 264 mutable RefPtrWillBeMember<BarProp> m_toolbar;
265 mutable PersistentWillBeMember<Console> m_console; 265 mutable PersistentWillBeMember<Console> m_console;
266 mutable PersistentWillBeMember<Navigator> m_navigator; 266 mutable PersistentWillBeMember<Navigator> m_navigator;
267 mutable RefPtrWillBeMember<StyleMedia> m_media; 267 mutable RefPtrWillBeMember<StyleMedia> m_media;
268 268
269 String m_status; 269 String m_status;
270 String m_defaultStatus; 270 String m_defaultStatus;
271 271
272 mutable RefPtrWillBeMember<ApplicationCache> m_applicationCache; 272 mutable PersistentWillBeMember<ApplicationCache> m_applicationCache;
273 273
274 RefPtrWillBeMember<DOMWindowEventQueue> m_eventQueue; 274 RefPtrWillBeMember<DOMWindowEventQueue> m_eventQueue;
275 RefPtr<SerializedScriptValue> m_pendingStateObject; 275 RefPtr<SerializedScriptValue> m_pendingStateObject;
276 276
277 WillBeHeapHashSet<OwnPtrWillBeMember<PostMessageTimer>> m_postMessageTimers; 277 WillBeHeapHashSet<OwnPtrWillBeMember<PostMessageTimer>> m_postMessageTimers;
278 }; 278 };
279 279
280 DEFINE_TYPE_CASTS(LocalDOMWindow, DOMWindow, x, x->isLocalDOMWindow(), x.isLocal DOMWindow()); 280 DEFINE_TYPE_CASTS(LocalDOMWindow, DOMWindow, x, x->isLocalDOMWindow(), x.isLocal DOMWindow());
281 281
282 inline String LocalDOMWindow::status() const 282 inline String LocalDOMWindow::status() const
283 { 283 {
284 return m_status; 284 return m_status;
285 } 285 }
286 286
287 inline String LocalDOMWindow::defaultStatus() const 287 inline String LocalDOMWindow::defaultStatus() const
288 { 288 {
289 return m_defaultStatus; 289 return m_defaultStatus;
290 } 290 }
291 291
292 } // namespace blink 292 } // namespace blink
293 293
294 #endif // LocalDOMWindow_h 294 #endif // LocalDOMWindow_h
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/frame/LocalDOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698