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

Unified Diff: third_party/WebKit/Source/core/dom/DOMStringList.h

Issue 2616923002: Replace [CallWith=ExecutionContext] with [CallWith=ScriptState] (Closed)
Patch Set: Fix errors Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/DOMStringList.h
diff --git a/third_party/WebKit/Source/core/dom/DOMStringList.h b/third_party/WebKit/Source/core/dom/DOMStringList.h
index 23b43ae22ca9884a45963f19546e14198ba9f363..96da3e9b9716185669dfad1460fb56fc58c62b1d 100644
--- a/third_party/WebKit/Source/core/dom/DOMStringList.h
+++ b/third_party/WebKit/Source/core/dom/DOMStringList.h
@@ -34,7 +34,7 @@
namespace blink {
-class ExecutionContext;
+class ScriptState;
// FIXME: Some consumers of this class may benefit from lazily fetching items
// rather than creating the list statically as is currently the only option.
@@ -63,8 +63,8 @@ class CORE_EXPORT DOMStringList final
size_t length() const { return m_strings.size(); }
String anonymousIndexedGetter(unsigned index) const;
- String item(ExecutionContext*, unsigned index) const;
- bool contains(ExecutionContext*, const String&) const;
+ String item(ScriptState*, unsigned index) const;
+ bool contains(ScriptState*, const String&) const;
operator const Vector<String>&() const { return m_strings; }
« no previous file with comments | « third_party/WebKit/Source/core/clipboard/DataTransferItem.idl ('k') | third_party/WebKit/Source/core/dom/DOMStringList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698