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

Side by Side Diff: Source/core/dom/DocumentStyleSheetCollection.cpp

Issue 15387004: Remove some unused includes from core/css and core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 7 months 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
« no previous file with comments | « Source/core/dom/DocumentFragment.cpp ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 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) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 12 matching lines...) Expand all
23 * along with this library; see the file COPYING.LIB. If not, write to 23 * along with this library; see the file COPYING.LIB. If not, write to
24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 * Boston, MA 02110-1301, USA. 25 * Boston, MA 02110-1301, USA.
26 */ 26 */
27 27
28 #include "config.h" 28 #include "config.h"
29 #include "core/dom/DocumentStyleSheetCollection.h" 29 #include "core/dom/DocumentStyleSheetCollection.h"
30 30
31 #include "HTMLNames.h" 31 #include "HTMLNames.h"
32 #include "SVGNames.h" 32 #include "SVGNames.h"
33 #include "bindings/v8/DOMWrapperWorld.h"
34 #include "core/css/CSSStyleSheet.h" 33 #include "core/css/CSSStyleSheet.h"
35 #include "core/css/SelectorChecker.h"
36 #include "core/css/StyleInvalidationAnalysis.h" 34 #include "core/css/StyleInvalidationAnalysis.h"
37 #include "core/css/StyleSheetContents.h" 35 #include "core/css/StyleSheetContents.h"
38 #include "core/css/StyleSheetList.h"
39 #include "core/css/resolver/StyleResolver.h" 36 #include "core/css/resolver/StyleResolver.h"
40 #include "core/dom/Document.h" 37 #include "core/dom/Document.h"
41 #include "core/dom/Element.h" 38 #include "core/dom/Element.h"
42 #include "core/dom/ProcessingInstruction.h" 39 #include "core/dom/ProcessingInstruction.h"
43 #include "core/dom/WebCoreMemoryInstrumentation.h" 40 #include "core/dom/WebCoreMemoryInstrumentation.h"
44 #include "core/html/HTMLIFrameElement.h" 41 #include "core/html/HTMLIFrameElement.h"
45 #include "core/html/HTMLLinkElement.h" 42 #include "core/html/HTMLLinkElement.h"
46 #include "core/html/HTMLStyleElement.h" 43 #include "core/html/HTMLStyleElement.h"
47 #include "core/page/Page.h" 44 #include "core/page/Page.h"
48 #include "core/page/PageGroup.h" 45 #include "core/page/PageGroup.h"
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 info.addMember(m_authorStyleSheets, "authorStyleSheets"); 497 info.addMember(m_authorStyleSheets, "authorStyleSheets");
501 info.addMember(m_activeAuthorStyleSheets, "activeAuthorStyleSheets"); 498 info.addMember(m_activeAuthorStyleSheets, "activeAuthorStyleSheets");
502 info.addMember(m_styleSheetsForStyleSheetList, "styleSheetsForStyleSheetList "); 499 info.addMember(m_styleSheetsForStyleSheetList, "styleSheetsForStyleSheetList ");
503 info.addMember(m_styleSheetCandidateNodes, "styleSheetCandidateNodes"); 500 info.addMember(m_styleSheetCandidateNodes, "styleSheetCandidateNodes");
504 info.addMember(m_preferredStylesheetSetName, "preferredStylesheetSetName"); 501 info.addMember(m_preferredStylesheetSetName, "preferredStylesheetSetName");
505 info.addMember(m_selectedStylesheetSetName, "selectedStylesheetSetName"); 502 info.addMember(m_selectedStylesheetSetName, "selectedStylesheetSetName");
506 info.addMember(m_document, "document"); 503 info.addMember(m_document, "document");
507 } 504 }
508 505
509 } 506 }
OLDNEW
« no previous file with comments | « Source/core/dom/DocumentFragment.cpp ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698