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

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

Issue 374053002: Oilpan: move MHTML objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make MHTMLArchive.h self-contained/closed. Created 6 years, 5 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 | « no previous file | Source/core/loader/DocumentLoader.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, 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 bool m_committed; 202 bool m_committed;
203 bool m_isClientRedirect; 203 bool m_isClientRedirect;
204 bool m_replacesCurrentHistoryItem; 204 bool m_replacesCurrentHistoryItem;
205 205
206 AtomicString m_overrideEncoding; 206 AtomicString m_overrideEncoding;
207 207
208 // The action that triggered loading - we keep this around for the 208 // The action that triggered loading - we keep this around for the
209 // benefit of the various policy handlers. 209 // benefit of the various policy handlers.
210 NavigationAction m_triggeringAction; 210 NavigationAction m_triggeringAction;
211 211
212 OwnPtr<ArchiveResourceCollection> m_archiveResourceCollection; 212 OwnPtrWillBePersistent<ArchiveResourceCollection> m_archiveResourceColle ction;
213 RefPtr<MHTMLArchive> m_archive; 213 RefPtrWillBePersistent<MHTMLArchive> m_archive;
214 214
215 bool m_loadingMainResource; 215 bool m_loadingMainResource;
216 DocumentLoadTiming m_documentLoadTiming; 216 DocumentLoadTiming m_documentLoadTiming;
217 217
218 double m_timeOfLastDataReceived; 218 double m_timeOfLastDataReceived;
219 219
220 friend class ApplicationCacheHost; // for substitute resource delivery 220 friend class ApplicationCacheHost; // for substitute resource delivery
221 OwnPtr<ApplicationCacheHost> m_applicationCacheHost; 221 OwnPtr<ApplicationCacheHost> m_applicationCacheHost;
222 }; 222 };
223 } 223 }
224 224
225 #endif // DocumentLoader_h 225 #endif // DocumentLoader_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/loader/DocumentLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698