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

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

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/DocumentSharedObjectPool.cpp ('k') | Source/core/dom/DocumentType.h » ('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.
11 * 11 *
12 * This library is free software; you can redistribute it and/or 12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Library General Public 13 * modify it under the terms of the GNU Library General Public
14 * License as published by the Free Software Foundation; either 14 * License as published by the Free Software Foundation; either
15 * version 2 of the License, or (at your option) any later version. 15 * version 2 of the License, or (at your option) any later version.
16 * 16 *
17 * This library is distributed in the hope that it will be useful, 17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Library General Public License for more details. 20 * Library General Public License for more details.
21 * 21 *
22 * You should have received a copy of the GNU Library General Public License 22 * You should have received a copy of the GNU Library General Public License
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 "DocumentStyleSheetCollection.h" 29 #include "core/dom/DocumentStyleSheetCollection.h"
30 30
31 #include "DOMWrapperWorld.h" 31 #include "DOMWrapperWorld.h"
32 #include "Document.h"
33 #include "Element.h"
34 #include "HTMLIFrameElement.h" 32 #include "HTMLIFrameElement.h"
35 #include "HTMLLinkElement.h" 33 #include "HTMLLinkElement.h"
36 #include "HTMLNames.h" 34 #include "HTMLNames.h"
37 #include "HTMLStyleElement.h" 35 #include "HTMLStyleElement.h"
38 #include "ProcessingInstruction.h"
39 #include "SVGNames.h" 36 #include "SVGNames.h"
40 #include "SVGStyleElement.h" 37 #include "SVGStyleElement.h"
41 #include "WebCoreMemoryInstrumentation.h"
42 #include "core/css/CSSStyleSheet.h" 38 #include "core/css/CSSStyleSheet.h"
43 #include "core/css/SelectorChecker.h" 39 #include "core/css/SelectorChecker.h"
44 #include "core/css/StyleInvalidationAnalysis.h" 40 #include "core/css/StyleInvalidationAnalysis.h"
45 #include "core/css/StyleResolver.h" 41 #include "core/css/StyleResolver.h"
46 #include "core/css/StyleSheetContents.h" 42 #include "core/css/StyleSheetContents.h"
47 #include "core/css/StyleSheetList.h" 43 #include "core/css/StyleSheetList.h"
44 #include "core/dom/Document.h"
45 #include "core/dom/Element.h"
46 #include "core/dom/ProcessingInstruction.h"
47 #include "core/dom/WebCoreMemoryInstrumentation.h"
48 #include "core/page/Page.h" 48 #include "core/page/Page.h"
49 #include "core/page/PageGroup.h" 49 #include "core/page/PageGroup.h"
50 #include "core/page/Settings.h" 50 #include "core/page/Settings.h"
51 #include "core/page/UserContentURLPattern.h" 51 #include "core/page/UserContentURLPattern.h"
52 #include <wtf/MemoryInstrumentationListHashSet.h> 52 #include <wtf/MemoryInstrumentationListHashSet.h>
53 #include <wtf/MemoryInstrumentationVector.h> 53 #include <wtf/MemoryInstrumentationVector.h>
54 54
55 namespace WebCore { 55 namespace WebCore {
56 56
57 using namespace HTMLNames; 57 using namespace HTMLNames;
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 info.addMember(m_authorStyleSheets, "authorStyleSheets"); 500 info.addMember(m_authorStyleSheets, "authorStyleSheets");
501 info.addMember(m_activeAuthorStyleSheets, "activeAuthorStyleSheets"); 501 info.addMember(m_activeAuthorStyleSheets, "activeAuthorStyleSheets");
502 info.addMember(m_styleSheetsForStyleSheetList, "styleSheetsForStyleSheetList "); 502 info.addMember(m_styleSheetsForStyleSheetList, "styleSheetsForStyleSheetList ");
503 info.addMember(m_styleSheetCandidateNodes, "styleSheetCandidateNodes"); 503 info.addMember(m_styleSheetCandidateNodes, "styleSheetCandidateNodes");
504 info.addMember(m_preferredStylesheetSetName, "preferredStylesheetSetName"); 504 info.addMember(m_preferredStylesheetSetName, "preferredStylesheetSetName");
505 info.addMember(m_selectedStylesheetSetName, "selectedStylesheetSetName"); 505 info.addMember(m_selectedStylesheetSetName, "selectedStylesheetSetName");
506 info.addMember(m_document, "document"); 506 info.addMember(m_document, "document");
507 } 507 }
508 508
509 } 509 }
OLDNEW
« no previous file with comments | « Source/core/dom/DocumentSharedObjectPool.cpp ('k') | Source/core/dom/DocumentType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698