| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 10 * | 10 * |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 const KURL& baseElementURL() const { return m_baseElementURL; } | 550 const KURL& baseElementURL() const { return m_baseElementURL; } |
| 551 const AtomicString& baseTarget() const { return m_baseTarget; } | 551 const AtomicString& baseTarget() const { return m_baseTarget; } |
| 552 void processBaseElement(); | 552 void processBaseElement(); |
| 553 | 553 |
| 554 KURL completeURL(const String&) const; | 554 KURL completeURL(const String&) const; |
| 555 KURL completeURLWithOverride(const String&, const KURL& baseURLOverride) con
st; | 555 KURL completeURLWithOverride(const String&, const KURL& baseURLOverride) con
st; |
| 556 | 556 |
| 557 virtual String userAgent(const KURL&) const override final; | 557 virtual String userAgent(const KURL&) const override final; |
| 558 virtual void disableEval(const String& errorMessage) override final; | 558 virtual void disableEval(const String& errorMessage) override final; |
| 559 | 559 |
| 560 bool canNavigate(const Frame& targetFrame); | |
| 561 LocalFrame* findUnsafeParentScrollPropagationBoundary(); | 560 LocalFrame* findUnsafeParentScrollPropagationBoundary(); |
| 562 | 561 |
| 563 CSSStyleSheet& elementSheet(); | 562 CSSStyleSheet& elementSheet(); |
| 564 | 563 |
| 565 virtual PassRefPtrWillBeRawPtr<DocumentParser> createParser(); | 564 virtual PassRefPtrWillBeRawPtr<DocumentParser> createParser(); |
| 566 DocumentParser* parser() const { return m_parser.get(); } | 565 DocumentParser* parser() const { return m_parser.get(); } |
| 567 ScriptableDocumentParser* scriptableDocumentParser() const; | 566 ScriptableDocumentParser* scriptableDocumentParser() const; |
| 568 | 567 |
| 569 bool printing() const { return m_printing; } | 568 bool printing() const { return m_printing; } |
| 570 void setPrinting(bool p) { m_printing = p; } | 569 void setPrinting(bool p) { m_printing = p; } |
| (...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1424 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1423 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1425 | 1424 |
| 1426 } // namespace blink | 1425 } // namespace blink |
| 1427 | 1426 |
| 1428 #ifndef NDEBUG | 1427 #ifndef NDEBUG |
| 1429 // Outside the WebCore namespace for ease of invocation from gdb. | 1428 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1430 void showLiveDocumentInstances(); | 1429 void showLiveDocumentInstances(); |
| 1431 #endif | 1430 #endif |
| 1432 | 1431 |
| 1433 #endif // Document_h | 1432 #endif // Document_h |
| OLD | NEW |