| 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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 const KURL& baseElementURL() const { return m_baseElementURL; } | 551 const KURL& baseElementURL() const { return m_baseElementURL; } |
| 552 const AtomicString& baseTarget() const { return m_baseTarget; } | 552 const AtomicString& baseTarget() const { return m_baseTarget; } |
| 553 void processBaseElement(); | 553 void processBaseElement(); |
| 554 | 554 |
| 555 KURL completeURL(const String&) const; | 555 KURL completeURL(const String&) const; |
| 556 KURL completeURLWithOverride(const String&, const KURL& baseURLOverride) con
st; | 556 KURL completeURLWithOverride(const String&, const KURL& baseURLOverride) con
st; |
| 557 | 557 |
| 558 virtual String userAgent(const KURL&) const override final; | 558 virtual String userAgent(const KURL&) const override final; |
| 559 virtual void disableEval(const String& errorMessage) override final; | 559 virtual void disableEval(const String& errorMessage) override final; |
| 560 | 560 |
| 561 bool canNavigate(const Frame& targetFrame); | |
| 562 LocalFrame* findUnsafeParentScrollPropagationBoundary(); | |
| 563 | |
| 564 CSSStyleSheet& elementSheet(); | 561 CSSStyleSheet& elementSheet(); |
| 565 | 562 |
| 566 virtual PassRefPtrWillBeRawPtr<DocumentParser> createParser(); | 563 virtual PassRefPtrWillBeRawPtr<DocumentParser> createParser(); |
| 567 DocumentParser* parser() const { return m_parser.get(); } | 564 DocumentParser* parser() const { return m_parser.get(); } |
| 568 ScriptableDocumentParser* scriptableDocumentParser() const; | 565 ScriptableDocumentParser* scriptableDocumentParser() const; |
| 569 | 566 |
| 570 bool printing() const { return m_printing; } | 567 bool printing() const { return m_printing; } |
| 571 void setPrinting(bool p) { m_printing = p; } | 568 void setPrinting(bool p) { m_printing = p; } |
| 572 | 569 |
| 573 bool paginatedForScreen() const { return m_paginatedForScreen; } | 570 bool paginatedForScreen() const { return m_paginatedForScreen; } |
| (...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1430 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1427 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1431 | 1428 |
| 1432 } // namespace blink | 1429 } // namespace blink |
| 1433 | 1430 |
| 1434 #ifndef NDEBUG | 1431 #ifndef NDEBUG |
| 1435 // Outside the WebCore namespace for ease of invocation from gdb. | 1432 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1436 void showLiveDocumentInstances(); | 1433 void showLiveDocumentInstances(); |
| 1437 #endif | 1434 #endif |
| 1438 | 1435 |
| 1439 #endif // Document_h | 1436 #endif // Document_h |
| OLD | NEW |