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

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

Issue 1290683003: Remove WeakPtrs from DocumentTiming/DocumentLoadTiming (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: WeakPtrWillBeRawPtr<Document>(nullptr) => nullptr Created 5 years, 4 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/dom/Document.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) 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 1083 matching lines...) Expand 10 before | Expand all | Expand 10 after
1094 String nodeName() const final; 1094 String nodeName() const final;
1095 NodeType nodeType() const final; 1095 NodeType nodeType() const final;
1096 bool childTypeAllowed(NodeType) const final; 1096 bool childTypeAllowed(NodeType) const final;
1097 PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep = true) final; 1097 PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep = true) final;
1098 void cloneDataFromDocument(const Document&); 1098 void cloneDataFromDocument(const Document&);
1099 1099
1100 #if !ENABLE(OILPAN) 1100 #if !ENABLE(OILPAN)
1101 void refExecutionContext() final { ref(); } 1101 void refExecutionContext() final { ref(); }
1102 void derefExecutionContext() final { deref(); } 1102 void derefExecutionContext() final { deref(); }
1103 #endif 1103 #endif
1104 WeakPtrWillBeRawPtr<Document> weakReference();
1105 1104
1106 const KURL& virtualURL() const final; // Same as url(), but needed for Execu tionContext to implement it without a performance loss for direct calls. 1105 const KURL& virtualURL() const final; // Same as url(), but needed for Execu tionContext to implement it without a performance loss for direct calls.
1107 KURL virtualCompleteURL(const String&) const final; // Same as completeURL() for the same reason as above. 1106 KURL virtualCompleteURL(const String&) const final; // Same as completeURL() for the same reason as above.
1108 1107
1109 void reportBlockedScriptExecutionToInspector(const String& directiveText) fi nal; 1108 void reportBlockedScriptExecutionToInspector(const String& directiveText) fi nal;
1110 1109
1111 double timerAlignmentInterval() const final; 1110 double timerAlignmentInterval() const final;
1112 1111
1113 void updateTitle(const String&); 1112 void updateTitle(const String&);
1114 void updateFocusAppearanceTimerFired(Timer<Document>*); 1113 void updateFocusAppearanceTimerFired(Timer<Document>*);
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
1421 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1420 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1422 1421
1423 } // namespace blink 1422 } // namespace blink
1424 1423
1425 #ifndef NDEBUG 1424 #ifndef NDEBUG
1426 // Outside the WebCore namespace for ease of invocation from gdb. 1425 // Outside the WebCore namespace for ease of invocation from gdb.
1427 CORE_EXPORT void showLiveDocumentInstances(); 1426 CORE_EXPORT void showLiveDocumentInstances();
1428 #endif 1427 #endif
1429 1428
1430 #endif // Document_h 1429 #endif // Document_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698