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

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

Issue 698023005: Move the v8::Isolate* parameter to the first parameter of various binding methods in third_party/We… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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 | « Source/core/dom/DOMTypedArray.cpp ('k') | 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 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after
1055 void updateStyleInvalidationIfNeeded(); 1055 void updateStyleInvalidationIfNeeded();
1056 1056
1057 virtual void trace(Visitor*) override; 1057 virtual void trace(Visitor*) override;
1058 1058
1059 bool hasSVGFilterElementsRequiringLayerUpdate() const { return m_layerUpdate SVGFilterElements.size(); } 1059 bool hasSVGFilterElementsRequiringLayerUpdate() const { return m_layerUpdate SVGFilterElements.size(); }
1060 void didRecalculateStyleForElement() { ++m_styleRecalcElementCounter; } 1060 void didRecalculateStyleForElement() { ++m_styleRecalcElementCounter; }
1061 1061
1062 AtomicString convertLocalName(const AtomicString&); 1062 AtomicString convertLocalName(const AtomicString&);
1063 1063
1064 virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext, v8::Isolate*) override; 1064 virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext, v8::Isolate*) override;
1065 virtual v8::Handle<v8::Object> associateWithWrapper(const WrapperTypeInfo*, v8::Handle<v8::Object> wrapper, v8::Isolate*) override; 1065 virtual v8::Handle<v8::Object> associateWithWrapper(v8::Isolate*, const Wrap perTypeInfo*, v8::Handle<v8::Object> wrapper) override;
1066 1066
1067 protected: 1067 protected:
1068 Document(const DocumentInit&, DocumentClassFlags = DefaultDocumentClass); 1068 Document(const DocumentInit&, DocumentClassFlags = DefaultDocumentClass);
1069 1069
1070 virtual void didUpdateSecurityOrigin() override final; 1070 virtual void didUpdateSecurityOrigin() override final;
1071 1071
1072 void clearXMLVersion() { m_xmlVersion = String(); } 1072 void clearXMLVersion() { m_xmlVersion = String(); }
1073 1073
1074 #if !ENABLE(OILPAN) 1074 #if !ENABLE(OILPAN)
1075 virtual void dispose() override; 1075 virtual void dispose() override;
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
1437 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1437 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1438 1438
1439 } // namespace blink 1439 } // namespace blink
1440 1440
1441 #ifndef NDEBUG 1441 #ifndef NDEBUG
1442 // Outside the WebCore namespace for ease of invocation from gdb. 1442 // Outside the WebCore namespace for ease of invocation from gdb.
1443 void showLiveDocumentInstances(); 1443 void showLiveDocumentInstances();
1444 #endif 1444 #endif
1445 1445
1446 #endif // Document_h 1446 #endif // Document_h
OLDNEW
« no previous file with comments | « Source/core/dom/DOMTypedArray.cpp ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698