| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 | 320 |
| 321 String readyState() const; | 321 String readyState() const; |
| 322 | 322 |
| 323 String defaultCharset() const; | 323 String defaultCharset() const; |
| 324 | 324 |
| 325 AtomicString charset() const { return Document::encodingName(); } | 325 AtomicString charset() const { return Document::encodingName(); } |
| 326 AtomicString characterSet() const { return Document::encodingName(); } | 326 AtomicString characterSet() const { return Document::encodingName(); } |
| 327 | 327 |
| 328 AtomicString encodingName() const; | 328 AtomicString encodingName() const; |
| 329 | 329 |
| 330 void setCharset(const String&); | |
| 331 | |
| 332 void setContent(const String&); | 330 void setContent(const String&); |
| 333 | 331 |
| 334 String suggestedMIMEType() const; | 332 String suggestedMIMEType() const; |
| 335 void setMimeType(const AtomicString&); | 333 void setMimeType(const AtomicString&); |
| 336 AtomicString contentType() const; // DOM 4 document.contentType | 334 AtomicString contentType() const; // DOM 4 document.contentType |
| 337 | 335 |
| 338 const AtomicString& contentLanguage() const { return m_contentLanguage; } | 336 const AtomicString& contentLanguage() const { return m_contentLanguage; } |
| 339 void setContentLanguage(const AtomicString&); | 337 void setContentLanguage(const AtomicString&); |
| 340 | 338 |
| 341 String xmlEncoding() const { return m_xmlEncoding; } | 339 String xmlEncoding() const { return m_xmlEncoding; } |
| (...skipping 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1465 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); | 1463 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); |
| 1466 | 1464 |
| 1467 } // namespace blink | 1465 } // namespace blink |
| 1468 | 1466 |
| 1469 #ifndef NDEBUG | 1467 #ifndef NDEBUG |
| 1470 // Outside the WebCore namespace for ease of invocation from gdb. | 1468 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1471 CORE_EXPORT void showLiveDocumentInstances(); | 1469 CORE_EXPORT void showLiveDocumentInstances(); |
| 1472 #endif | 1470 #endif |
| 1473 | 1471 |
| 1474 #endif // Document_h | 1472 #endif // Document_h |
| OLD | NEW |