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

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

Issue 2847703002: Make ExecutionContext aware about how it can return CoreProbeSink (Closed)
Patch Set: . Created 3 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
« no previous file with comments | « no previous file | third_party/WebKit/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 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All
7 * rights reserved. 7 * rights reserved.
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
(...skipping 1300 matching lines...) Expand 10 before | Expand all | Expand 10 after
1311 1311
1312 const PropertyRegistry* GetPropertyRegistry() const; 1312 const PropertyRegistry* GetPropertyRegistry() const;
1313 PropertyRegistry* GetPropertyRegistry(); 1313 PropertyRegistry* GetPropertyRegistry();
1314 1314
1315 // Document maintains a counter of visible non-secure password 1315 // Document maintains a counter of visible non-secure password
1316 // fields in the page. Used to notify the embedder when all visible 1316 // fields in the page. Used to notify the embedder when all visible
1317 // non-secure passwords fields are no longer visible. 1317 // non-secure passwords fields are no longer visible.
1318 void IncrementPasswordCount(); 1318 void IncrementPasswordCount();
1319 void DecrementPasswordCount(); 1319 void DecrementPasswordCount();
1320 1320
1321 CoreProbeSink* GetProbeSink() final;
1322
1321 protected: 1323 protected:
1322 Document(const DocumentInit&, DocumentClassFlags = kDefaultDocumentClass); 1324 Document(const DocumentInit&, DocumentClassFlags = kDefaultDocumentClass);
1323 1325
1324 void DidUpdateSecurityOrigin() final; 1326 void DidUpdateSecurityOrigin() final;
1325 1327
1326 void ClearXMLVersion() { xml_version_ = String(); } 1328 void ClearXMLVersion() { xml_version_ = String(); }
1327 1329
1328 virtual Document* CloneDocumentWithoutChildren(); 1330 virtual Document* CloneDocumentWithoutChildren();
1329 1331
1330 bool ImportContainerNodeChildren(ContainerNode* old_container_node, 1332 bool ImportContainerNodeChildren(ContainerNode* old_container_node,
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
1732 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1734 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1733 1735
1734 } // namespace blink 1736 } // namespace blink
1735 1737
1736 #ifndef NDEBUG 1738 #ifndef NDEBUG
1737 // Outside the WebCore namespace for ease of invocation from gdb. 1739 // Outside the WebCore namespace for ease of invocation from gdb.
1738 CORE_EXPORT void showLiveDocumentInstances(); 1740 CORE_EXPORT void showLiveDocumentInstances();
1739 #endif 1741 #endif
1740 1742
1741 #endif // Document_h 1743 #endif // Document_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698