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

Side by Side Diff: Source/core/dom/Document.h

Issue 271673005: Oilpan: move DOMImplementation to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Adjust signature Created 6 years, 7 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
9 * Copyright (C) 2011 Google Inc. All rights reserved. 9 * Copyright (C) 2011 Google Inc. All rights reserved.
10 * 10 *
(...skipping 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after
1205 KURL m_baseURLOverride; // An alternative base URL that takes precedence ove r m_baseURL (but not m_baseElementURL). 1205 KURL m_baseURLOverride; // An alternative base URL that takes precedence ove r m_baseURL (but not m_baseElementURL).
1206 KURL m_baseElementURL; // The URL set by the <base> element. 1206 KURL m_baseElementURL; // The URL set by the <base> element.
1207 KURL m_cookieURL; // The URL to use for cookie access. 1207 KURL m_cookieURL; // The URL to use for cookie access.
1208 1208
1209 AtomicString m_baseTarget; 1209 AtomicString m_baseTarget;
1210 1210
1211 // Mime-type of the document in case it was cloned or created by XHR. 1211 // Mime-type of the document in case it was cloned or created by XHR.
1212 AtomicString m_mimeType; 1212 AtomicString m_mimeType;
1213 1213
1214 RefPtrWillBeMember<DocumentType> m_docType; 1214 RefPtrWillBeMember<DocumentType> m_docType;
1215 OwnPtr<DOMImplementation> m_implementation; 1215 OwnPtrWillBeMember<DOMImplementation> m_implementation;
1216 1216
1217 RefPtrWillBeMember<CSSStyleSheet> m_elemSheet; 1217 RefPtrWillBeMember<CSSStyleSheet> m_elemSheet;
1218 1218
1219 bool m_printing; 1219 bool m_printing;
1220 bool m_paginatedForScreen; 1220 bool m_paginatedForScreen;
1221 1221
1222 CompatibilityMode m_compatibilityMode; 1222 CompatibilityMode m_compatibilityMode;
1223 bool m_compatibilityModeLocked; // This is cheaper than making setCompatibil ityMode virtual. 1223 bool m_compatibilityModeLocked; // This is cheaper than making setCompatibil ityMode virtual.
1224 1224
1225 bool m_hasAutofocused; 1225 bool m_hasAutofocused;
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
1443 inline bool Node::isDocumentNode() const 1443 inline bool Node::isDocumentNode() const
1444 { 1444 {
1445 return this == document(); 1445 return this == document();
1446 } 1446 }
1447 1447
1448 Node* eventTargetNodeForDocument(Document*); 1448 Node* eventTargetNodeForDocument(Document*);
1449 1449
1450 } // namespace WebCore 1450 } // namespace WebCore
1451 1451
1452 #endif // Document_h 1452 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698