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

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

Issue 1126013003: v8::Isolate* should be the first parameter (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Wrap function Change for v8::Isolate* , as it is no more optional argument Created 5 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 | « 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 1055
1056 bool hasSVGFilterElementsRequiringLayerUpdate() const { return m_layerUpdate SVGFilterElements.size(); } 1056 bool hasSVGFilterElementsRequiringLayerUpdate() const { return m_layerUpdate SVGFilterElements.size(); }
1057 void didRecalculateStyleForElement() { ++m_styleRecalcElementCounter; } 1057 void didRecalculateStyleForElement() { ++m_styleRecalcElementCounter; }
1058 1058
1059 AtomicString convertLocalName(const AtomicString&); 1059 AtomicString convertLocalName(const AtomicString&);
1060 1060
1061 void platformColorsChanged(); 1061 void platformColorsChanged();
1062 1062
1063 virtual DOMTimerCoordinator* timers() override final; 1063 virtual DOMTimerCoordinator* timers() override final;
1064 1064
1065 virtual v8::Local<v8::Object> wrap(v8::Local<v8::Object> creationContext, v8 ::Isolate*) override; 1065 virtual v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creat ionContext) override;
1066 virtual v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const Wrapp erTypeInfo*, v8::Local<v8::Object> wrapper) override; 1066 virtual v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const Wrapp erTypeInfo*, v8::Local<v8::Object> wrapper) override;
1067 1067
1068 OriginsUsingFeatures::Value& originsUsingFeaturesValue() { return m_originsU singFeaturesValue; } 1068 OriginsUsingFeatures::Value& originsUsingFeaturesValue() { return m_originsU singFeaturesValue; }
1069 1069
1070 NthIndexCache* nthIndexCache() const { return m_nthIndexCache; } 1070 NthIndexCache* nthIndexCache() const { return m_nthIndexCache; }
1071 1071
1072 bool isPrivilegedContext(String& errorMessage, const PrivilegeContextCheck = StandardPrivilegeCheck) override; 1072 bool isPrivilegedContext(String& errorMessage, const PrivilegeContextCheck = StandardPrivilegeCheck) override;
1073 1073
1074 void setClientHintsPreferences(const ClientHintsPreferences& preferences) { m_clientHintsPreferences.set(preferences); } 1074 void setClientHintsPreferences(const ClientHintsPreferences& preferences) { m_clientHintsPreferences.set(preferences); }
1075 const ClientHintsPreferences& clientHintsPreferences() const { return m_clie ntHintsPreferences; } 1075 const ClientHintsPreferences& clientHintsPreferences() const { return m_clie ntHintsPreferences; }
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
1465 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1465 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1466 1466
1467 } // namespace blink 1467 } // namespace blink
1468 1468
1469 #ifndef NDEBUG 1469 #ifndef NDEBUG
1470 // Outside the WebCore namespace for ease of invocation from gdb. 1470 // Outside the WebCore namespace for ease of invocation from gdb.
1471 CORE_EXPORT void showLiveDocumentInstances(); 1471 CORE_EXPORT void showLiveDocumentInstances();
1472 #endif 1472 #endif
1473 1473
1474 #endif // Document_h 1474 #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