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

Side by Side Diff: Source/core/html/HTMLTableElement.cpp

Issue 17388003: Remove unused includes from core/{editing,fileapi,history,html} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased Created 7 years, 6 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/html/HTMLSourceElement.cpp ('k') | Source/core/html/HTMLTitleElement.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) 1997 Martin Jones (mjones@kde.org) 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 * (C) 1997 Torben Weis (weis@kde.org) 3 * (C) 1997 Torben Weis (weis@kde.org)
4 * (C) 1998 Waldo Bastian (bastian@kde.org) 4 * (C) 1998 Waldo Bastian (bastian@kde.org)
5 * (C) 1999 Lars Knoll (knoll@kde.org) 5 * (C) 1999 Lars Knoll (knoll@kde.org)
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) 6 * (C) 1999 Antti Koivisto (koivisto@kde.org)
7 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2010, 2011 Apple Inc. All rights reserved. 7 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2010, 2011 Apple Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 11 matching lines...) Expand all
22 * Boston, MA 02110-1301, USA. 22 * Boston, MA 02110-1301, USA.
23 */ 23 */
24 24
25 #include "config.h" 25 #include "config.h"
26 #include "core/html/HTMLTableElement.h" 26 #include "core/html/HTMLTableElement.h"
27 27
28 #include "CSSPropertyNames.h" 28 #include "CSSPropertyNames.h"
29 #include "CSSValueKeywords.h" 29 #include "CSSValueKeywords.h"
30 #include "HTMLNames.h" 30 #include "HTMLNames.h"
31 #include "core/css/CSSImageValue.h" 31 #include "core/css/CSSImageValue.h"
32 #include "core/css/CSSStyleSheet.h"
33 #include "core/css/CSSValuePool.h" 32 #include "core/css/CSSValuePool.h"
34 #include "core/css/StylePropertySet.h" 33 #include "core/css/StylePropertySet.h"
35 #include "core/dom/Attribute.h" 34 #include "core/dom/Attribute.h"
36 #include "core/dom/ExceptionCode.h" 35 #include "core/dom/ExceptionCode.h"
37 #include "core/dom/ExceptionCodePlaceholder.h" 36 #include "core/dom/ExceptionCodePlaceholder.h"
38 #include "core/dom/Text.h"
39 #include "core/html/HTMLTableCaptionElement.h" 37 #include "core/html/HTMLTableCaptionElement.h"
40 #include "core/html/HTMLTableRowElement.h" 38 #include "core/html/HTMLTableRowElement.h"
41 #include "core/html/HTMLTableRowsCollection.h" 39 #include "core/html/HTMLTableRowsCollection.h"
42 #include "core/html/HTMLTableSectionElement.h" 40 #include "core/html/HTMLTableSectionElement.h"
43 #include "core/html/parser/HTMLParserIdioms.h" 41 #include "core/html/parser/HTMLParserIdioms.h"
44 #include "core/rendering/RenderTable.h" 42 #include "core/rendering/RenderTable.h"
45 43
46 namespace WebCore { 44 namespace WebCore {
47 45
48 using namespace HTMLNames; 46 using namespace HTMLNames;
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 } 571 }
574 572
575 void HTMLTableElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) cons t 573 void HTMLTableElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) cons t
576 { 574 {
577 HTMLElement::addSubresourceAttributeURLs(urls); 575 HTMLElement::addSubresourceAttributeURLs(urls);
578 576
579 addSubresourceURL(urls, document()->completeURL(getAttribute(backgroundAttr) )); 577 addSubresourceURL(urls, document()->completeURL(getAttribute(backgroundAttr) ));
580 } 578 }
581 579
582 } 580 }
OLDNEW
« no previous file with comments | « Source/core/html/HTMLSourceElement.cpp ('k') | Source/core/html/HTMLTitleElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698