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

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

Issue 2484863003: Make updateStyleAndLayoutTree ready for async stylesheet update. (Closed)
Patch Set: Rebased 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 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after
1220 1220
1221 enum HttpRefreshType { HttpRefreshFromHeader, HttpRefreshFromMetaTag }; 1221 enum HttpRefreshType { HttpRefreshFromHeader, HttpRefreshFromMetaTag };
1222 void maybeHandleHttpRefresh(const String&, HttpRefreshType); 1222 void maybeHandleHttpRefresh(const String&, HttpRefreshType);
1223 1223
1224 void updateSecurityOrigin(PassRefPtr<SecurityOrigin>); 1224 void updateSecurityOrigin(PassRefPtr<SecurityOrigin>);
1225 1225
1226 void setHasViewportUnits() { m_hasViewportUnits = true; } 1226 void setHasViewportUnits() { m_hasViewportUnits = true; }
1227 bool hasViewportUnits() const { return m_hasViewportUnits; } 1227 bool hasViewportUnits() const { return m_hasViewportUnits; }
1228 void notifyResizeForViewportUnits(); 1228 void notifyResizeForViewportUnits();
1229 1229
1230 void updateActiveStyle();
1230 void updateStyleInvalidationIfNeeded(); 1231 void updateStyleInvalidationIfNeeded();
1231 1232
1232 DECLARE_VIRTUAL_TRACE(); 1233 DECLARE_VIRTUAL_TRACE();
1233 1234
1234 DECLARE_VIRTUAL_TRACE_WRAPPERS(); 1235 DECLARE_VIRTUAL_TRACE_WRAPPERS();
1235 1236
1236 AtomicString convertLocalName(const AtomicString&); 1237 AtomicString convertLocalName(const AtomicString&);
1237 1238
1238 void platformColorsChanged(); 1239 void platformColorsChanged();
1239 1240
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
1714 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1715 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1715 1716
1716 } // namespace blink 1717 } // namespace blink
1717 1718
1718 #ifndef NDEBUG 1719 #ifndef NDEBUG
1719 // Outside the WebCore namespace for ease of invocation from gdb. 1720 // Outside the WebCore namespace for ease of invocation from gdb.
1720 CORE_EXPORT void showLiveDocumentInstances(); 1721 CORE_EXPORT void showLiveDocumentInstances();
1721 #endif 1722 #endif
1722 1723
1723 #endif // Document_h 1724 #endif // Document_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/ViewportStyleResolver.cpp ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698