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

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

Issue 1629403003: Merge DOMSettableTokensList into DOMTokensList (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed non-oilpan inheritance Created 4 years, 10 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/HTMLIFrameElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp b/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
index a7cfbfde49adc30e5b00a07f9fb3ff5ff1e6aee0..409c0396259984ce2e5127b443b6faf09dbb8cb3 100644
--- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
@@ -49,7 +49,7 @@ DEFINE_TRACE(HTMLIFrameElement)
{
visitor->trace(m_sandbox);
HTMLFrameElementBase::trace(visitor);
- DOMSettableTokenListObserver::trace(visitor);
+ DOMTokenListObserver::trace(visitor);
}
HTMLIFrameElement::~HTMLIFrameElement()
@@ -59,7 +59,7 @@ HTMLIFrameElement::~HTMLIFrameElement()
#endif
}
-DOMSettableTokenList* HTMLIFrameElement::sandbox() const
+DOMTokenList* HTMLIFrameElement::sandbox() const
{
return m_sandbox.get();
}
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLIFrameElement.h ('k') | third_party/WebKit/Source/core/html/HTMLIFrameElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698