Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.h

Issue 2572603002: ABANDONED CL: Rename readyState() to getReadyState(). (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All
7 * rights reserved. 7 * rights reserved.
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 Element* createElement(const QualifiedName&, CreateElementFlags); 349 Element* createElement(const QualifiedName&, CreateElementFlags);
350 350
351 Element* elementFromPoint(int x, int y) const; 351 Element* elementFromPoint(int x, int y) const;
352 HeapVector<Member<Element>> elementsFromPoint(int x, int y) const; 352 HeapVector<Member<Element>> elementsFromPoint(int x, int y) const;
353 Range* caretRangeFromPoint(int x, int y); 353 Range* caretRangeFromPoint(int x, int y);
354 Element* scrollingElement(); 354 Element* scrollingElement();
355 355
356 void addStyleReattachData(Node&, StyleReattachData&); 356 void addStyleReattachData(Node&, StyleReattachData&);
357 StyleReattachData getStyleReattachData(Node&); 357 StyleReattachData getStyleReattachData(Node&);
358 358
359 String readyState() const; 359 String getReadyState() const;
Łukasz Anforowicz 2016/12/12 22:43:49 After naive rename this would conflict with Docume
360 360
361 AtomicString characterSet() const { return Document::encodingName(); } 361 AtomicString characterSet() const { return Document::encodingName(); }
362 362
363 AtomicString encodingName() const; 363 AtomicString encodingName() const;
364 364
365 void setContent(const String&); 365 void setContent(const String&);
366 366
367 String suggestedMIMEType() const; 367 String suggestedMIMEType() const;
368 void setMimeType(const AtomicString&); 368 void setMimeType(const AtomicString&);
369 AtomicString contentType() const; // DOM 4 document.contentType 369 AtomicString contentType() const; // DOM 4 document.contentType
(...skipping 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after
1717 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1717 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1718 1718
1719 } // namespace blink 1719 } // namespace blink
1720 1720
1721 #ifndef NDEBUG 1721 #ifndef NDEBUG
1722 // Outside the WebCore namespace for ease of invocation from gdb. 1722 // Outside the WebCore namespace for ease of invocation from gdb.
1723 CORE_EXPORT void showLiveDocumentInstances(); 1723 CORE_EXPORT void showLiveDocumentInstances();
1724 #endif 1724 #endif
1725 1725
1726 #endif // Document_h 1726 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698