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

Unified Diff: Source/core/inspector/InspectorDOMAgent.cpp

Issue 476223003: Use tighter typing for Document::ownerElement() return value (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/core/html/HTMLBodyElement.cpp ('k') | Source/core/rendering/RenderBox.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorDOMAgent.cpp
diff --git a/Source/core/inspector/InspectorDOMAgent.cpp b/Source/core/inspector/InspectorDOMAgent.cpp
index d209579d5977b9df7214e1c2a885927d83ee8671..a98598dea11a6c1a491d2f5e355ca2c92c095b9b 100644
--- a/Source/core/inspector/InspectorDOMAgent.cpp
+++ b/Source/core/inspector/InspectorDOMAgent.cpp
@@ -1831,7 +1831,7 @@ void InspectorDOMAgent::domContentLoadedEventFired(LocalFrame* frame)
void InspectorDOMAgent::invalidateFrameOwnerElement(LocalFrame* frame)
{
- Element* frameOwner = frame->document()->ownerElement();
+ HTMLFrameOwnerElement* frameOwner = frame->document()->ownerElement();
if (!frameOwner)
return;
« no previous file with comments | « Source/core/html/HTMLBodyElement.cpp ('k') | Source/core/rendering/RenderBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698