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

Unified Diff: third_party/WebKit/Source/core/html/HTMLDocument.cpp

Issue 1837823003: [Binding] Add [OverrideBuiltins] label onto HTMLDocument interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLDocument.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLDocument.cpp b/third_party/WebKit/Source/core/html/HTMLDocument.cpp
index cc13db413d8da787167d8b547daf18a7799fd290..f3a16be1f5586eb3d003a96b504d7e95548aa0d3 100644
--- a/third_party/WebKit/Source/core/html/HTMLDocument.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLDocument.cpp
@@ -170,8 +170,6 @@ void HTMLDocument::addItemToMap(HashCountedSet<AtomicString>& map, const AtomicS
if (name.isEmpty())
return;
map.add(name);
- if (LocalFrame* f = frame())
- f->script().namedItemAdded(this, name);
}
void HTMLDocument::removeItemFromMap(HashCountedSet<AtomicString>& map, const AtomicString& name)
@@ -179,8 +177,6 @@ void HTMLDocument::removeItemFromMap(HashCountedSet<AtomicString>& map, const At
if (name.isEmpty())
return;
map.remove(name);
- if (LocalFrame* f = frame())
- f->script().namedItemRemoved(this, name);
}
void HTMLDocument::addNamedItem(const AtomicString& name)
« no previous file with comments | « third_party/WebKit/Source/bindings/core/v8/custom/custom.gypi ('k') | third_party/WebKit/Source/core/html/HTMLDocument.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698