| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 // TODO(dcheng): Fix const-correctness issues and remove this overload. | 550 // TODO(dcheng): Fix const-correctness issues and remove this overload. |
| 551 virtual const WebFrameImplBase* toImplBase() const | 551 virtual const WebFrameImplBase* toImplBase() const |
| 552 { | 552 { |
| 553 return const_cast<WebFrame*>(this)->toImplBase(); | 553 return const_cast<WebFrame*>(this)->toImplBase(); |
| 554 } | 554 } |
| 555 | 555 |
| 556 // Returns the frame inside a given frame or iframe element. Returns 0 if | 556 // Returns the frame inside a given frame or iframe element. Returns 0 if |
| 557 // the given element is not a frame, iframe or if the frame is empty. | 557 // the given element is not a frame, iframe or if the frame is empty. |
| 558 BLINK_EXPORT static WebFrame* fromFrameOwnerElement(const WebElement&); | 558 BLINK_EXPORT static WebFrame* fromFrameOwnerElement(const WebElement&); |
| 559 | 559 |
| 560 // Use WebDocument::isSecureContext() instead of this function to | |
| 561 // check whether this frame's document is a secure context. | |
| 562 // | |
| 563 // Returns whether it's possible for a document whose frame is a descendant | |
| 564 // of this frame to be a secure context, not considering scheme exceptions | |
| 565 // (since any document can be a secure context if it has a scheme | |
| 566 // exception). See Document::isSecureContextImpl for more details. | |
| 567 BLINK_EXPORT bool canHaveSecureChild() const; | |
| 568 | |
| 569 #if BLINK_IMPLEMENTATION | 560 #if BLINK_IMPLEMENTATION |
| 570 static WebFrame* fromFrame(Frame*); | 561 static WebFrame* fromFrame(Frame*); |
| 571 | 562 |
| 572 bool inShadowTree() const { return m_scope == WebTreeScopeType::Shadow; } | 563 bool inShadowTree() const { return m_scope == WebTreeScopeType::Shadow; } |
| 573 | 564 |
| 574 static void traceFrames(Visitor*, WebFrame*); | 565 static void traceFrames(Visitor*, WebFrame*); |
| 575 static void traceFrames(InlinedGlobalMarkingVisitor, WebFrame*); | 566 static void traceFrames(InlinedGlobalMarkingVisitor, WebFrame*); |
| 576 void clearWeakFrames(Visitor*); | 567 void clearWeakFrames(Visitor*); |
| 577 void clearWeakFrames(InlinedGlobalMarkingVisitor); | 568 void clearWeakFrames(InlinedGlobalMarkingVisitor); |
| 578 #endif | 569 #endif |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 WebFrame* m_firstChild; | 602 WebFrame* m_firstChild; |
| 612 WebFrame* m_lastChild; | 603 WebFrame* m_lastChild; |
| 613 | 604 |
| 614 WebFrame* m_opener; | 605 WebFrame* m_opener; |
| 615 WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker; | 606 WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker; |
| 616 }; | 607 }; |
| 617 | 608 |
| 618 } // namespace blink | 609 } // namespace blink |
| 619 | 610 |
| 620 #endif | 611 #endif |
| OLD | NEW |