Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "public/web/WebFrame.h" | 5 #include "public/web/WebFrame.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/WindowProxyManager.h" | 7 #include "bindings/core/v8/WindowProxyManager.h" |
| 8 #include "core/frame/FrameHost.h" | 8 #include "core/frame/FrameHost.h" |
| 9 #include "core/frame/FrameView.h" | 9 #include "core/frame/FrameView.h" |
| 10 #include "core/frame/LocalFrame.h" | 10 #include "core/frame/LocalFrame.h" |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 278 | 278 |
| 279 WebFrame* WebFrame::fromFrameOwnerElement(const WebElement& webElement) | 279 WebFrame* WebFrame::fromFrameOwnerElement(const WebElement& webElement) |
| 280 { | 280 { |
| 281 Element* element = webElement; | 281 Element* element = webElement; |
| 282 | 282 |
| 283 if (!element->isFrameOwnerElement()) | 283 if (!element->isFrameOwnerElement()) |
| 284 return nullptr; | 284 return nullptr; |
| 285 return fromFrame(toHTMLFrameOwnerElement(element)->contentFrame()); | 285 return fromFrame(toHTMLFrameOwnerElement(element)->contentFrame()); |
| 286 } | 286 } |
| 287 | 287 |
| 288 bool WebFrame::canHaveSecureChild() const | |
| 289 { | |
| 290 Frame* frame = toImplBase()->frame(); | |
| 291 if (!frame) | |
| 292 return false; | |
| 293 String message; | |
| 294 bool result = frame->canHaveSecureChild(&message); | |
| 295 return result; | |
|
horo
2016/06/03 09:54:45
nit: we don't need `result` variable.
falken
2016/06/03 12:10:45
Done.
| |
| 296 } | |
| 297 | |
| 288 bool WebFrame::isLoading() const | 298 bool WebFrame::isLoading() const |
| 289 { | 299 { |
| 290 if (Frame* frame = toImplBase()->frame()) | 300 if (Frame* frame = toImplBase()->frame()) |
| 291 return frame->isLoading(); | 301 return frame->isLoading(); |
| 292 return false; | 302 return false; |
| 293 } | 303 } |
| 294 | 304 |
| 295 WebFrame* WebFrame::fromFrame(Frame* frame) | 305 WebFrame* WebFrame::fromFrame(Frame* frame) |
| 296 { | 306 { |
| 297 if (!frame) | 307 if (!frame) |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 364 void WebFrame::traceFrame(VisitorDispatcher visitor, WebFrame* frame) { trac eFrameImpl(visitor, frame); } \ | 374 void WebFrame::traceFrame(VisitorDispatcher visitor, WebFrame* frame) { trac eFrameImpl(visitor, frame); } \ |
| 365 void WebFrame::traceFrames(VisitorDispatcher visitor, WebFrame* frame) { tra ceFramesImpl(visitor, frame); } \ | 375 void WebFrame::traceFrames(VisitorDispatcher visitor, WebFrame* frame) { tra ceFramesImpl(visitor, frame); } \ |
| 366 void WebFrame::clearWeakFrames(VisitorDispatcher visitor) { clearWeakFramesI mpl(visitor); } | 376 void WebFrame::clearWeakFrames(VisitorDispatcher visitor) { clearWeakFramesI mpl(visitor); } |
| 367 | 377 |
| 368 DEFINE_VISITOR_METHOD(Visitor*) | 378 DEFINE_VISITOR_METHOD(Visitor*) |
| 369 DEFINE_VISITOR_METHOD(InlinedGlobalMarkingVisitor) | 379 DEFINE_VISITOR_METHOD(InlinedGlobalMarkingVisitor) |
| 370 | 380 |
| 371 #undef DEFINE_VISITOR_METHOD | 381 #undef DEFINE_VISITOR_METHOD |
| 372 | 382 |
| 373 } // namespace blink | 383 } // namespace blink |
| OLD | NEW |