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

Side by Side Diff: Source/core/loader/DocumentLoader.h

Issue 552733003: Oilpan: make DOMWindowProperty a GC mixin. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Pacify GC plugin wrt LocalDOMWindow::trace() Created 6 years, 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
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 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 212
213 OwnPtrWillBePersistent<ArchiveResourceCollection> m_archiveResourceColle ction; 213 OwnPtrWillBePersistent<ArchiveResourceCollection> m_archiveResourceColle ction;
214 RefPtrWillBePersistent<MHTMLArchive> m_archive; 214 RefPtrWillBePersistent<MHTMLArchive> m_archive;
215 215
216 bool m_loadingMainResource; 216 bool m_loadingMainResource;
217 DocumentLoadTiming m_documentLoadTiming; 217 DocumentLoadTiming m_documentLoadTiming;
218 218
219 double m_timeOfLastDataReceived; 219 double m_timeOfLastDataReceived;
220 220
221 friend class ApplicationCacheHost; // for substitute resource delivery 221 friend class ApplicationCacheHost; // for substitute resource delivery
222 OwnPtr<ApplicationCacheHost> m_applicationCacheHost; 222 OwnPtrWillBePersistent<ApplicationCacheHost> m_applicationCacheHost;
223 }; 223 };
224 } 224 }
225 225
226 #endif // DocumentLoader_h 226 #endif // DocumentLoader_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698