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

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

Issue 2445413003: [Blink] Display images on a dark background (Closed)
Patch Set: Use finish Created 4 years, 1 month 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 990 matching lines...) Expand 10 before | Expand all | Expand 10 after
1001 override; // Executes the task on context's thread asynchronously. 1001 override; // Executes the task on context's thread asynchronously.
1002 void postInspectorTask(const WebTraceLocation&, 1002 void postInspectorTask(const WebTraceLocation&,
1003 std::unique_ptr<ExecutionContextTask>); 1003 std::unique_ptr<ExecutionContextTask>);
1004 1004
1005 void tasksWereSuspended() final; 1005 void tasksWereSuspended() final;
1006 void tasksWereResumed() final; 1006 void tasksWereResumed() final;
1007 void suspendScheduledTasks() final; 1007 void suspendScheduledTasks() final;
1008 void resumeScheduledTasks() final; 1008 void resumeScheduledTasks() final;
1009 bool tasksNeedSuspension() final; 1009 bool tasksNeedSuspension() final;
1010 1010
1011 void finishedParsing(); 1011 virtual void finishedParsing();
1012 1012
1013 void setEncodingData(const DocumentEncodingData& newData); 1013 void setEncodingData(const DocumentEncodingData& newData);
1014 const WTF::TextEncoding& encoding() const { 1014 const WTF::TextEncoding& encoding() const {
1015 return m_encodingData.encoding(); 1015 return m_encodingData.encoding();
1016 } 1016 }
1017 1017
1018 bool encodingWasDetectedHeuristically() const { 1018 bool encodingWasDetectedHeuristically() const {
1019 return m_encodingData.wasDetectedHeuristically(); 1019 return m_encodingData.wasDetectedHeuristically();
1020 } 1020 }
1021 bool sawDecodingError() const { return m_encodingData.sawDecodingError(); } 1021 bool sawDecodingError() const { return m_encodingData.sawDecodingError(); }
(...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after
1715 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1715 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1716 1716
1717 } // namespace blink 1717 } // namespace blink
1718 1718
1719 #ifndef NDEBUG 1719 #ifndef NDEBUG
1720 // Outside the WebCore namespace for ease of invocation from gdb. 1720 // Outside the WebCore namespace for ease of invocation from gdb.
1721 CORE_EXPORT void showLiveDocumentInstances(); 1721 CORE_EXPORT void showLiveDocumentInstances();
1722 #endif 1722 #endif
1723 1723
1724 #endif // Document_h 1724 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698