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

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

Issue 15422005: Remove unused includes from core/html .cpp files (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased 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/html/HTMLBRElement.cpp ('k') | Source/core/html/HTMLButtonElement.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) 2000 Simon Hausmann (hausmann@kde.org) 4 * (C) 2000 Simon Hausmann (hausmann@kde.org)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv ed. 6 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv ed.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 18 matching lines...) Expand all
29 #include "bindings/v8/ScriptEventListener.h" 29 #include "bindings/v8/ScriptEventListener.h"
30 #include "core/css/CSSImageValue.h" 30 #include "core/css/CSSImageValue.h"
31 #include "core/css/CSSParser.h" 31 #include "core/css/CSSParser.h"
32 #include "core/css/StylePropertySet.h" 32 #include "core/css/StylePropertySet.h"
33 #include "core/dom/Attribute.h" 33 #include "core/dom/Attribute.h"
34 #include "core/dom/EventNames.h" 34 #include "core/dom/EventNames.h"
35 #include "core/html/HTMLFrameElementBase.h" 35 #include "core/html/HTMLFrameElementBase.h"
36 #include "core/html/parser/HTMLParserIdioms.h" 36 #include "core/html/parser/HTMLParserIdioms.h"
37 #include "core/page/Frame.h" 37 #include "core/page/Frame.h"
38 #include "core/page/FrameView.h" 38 #include "core/page/FrameView.h"
39 #include "core/page/Page.h"
40 39
41 namespace WebCore { 40 namespace WebCore {
42 41
43 using namespace HTMLNames; 42 using namespace HTMLNames;
44 43
45 HTMLBodyElement::HTMLBodyElement(const QualifiedName& tagName, Document* documen t) 44 HTMLBodyElement::HTMLBodyElement(const QualifiedName& tagName, Document* documen t)
46 : HTMLElement(tagName, document) 45 : HTMLElement(tagName, document)
47 { 46 {
48 ASSERT(hasTagName(bodyTag)); 47 ASSERT(hasTagName(bodyTag));
49 ScriptWrappable::init(this); 48 ScriptWrappable::init(this);
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 } 322 }
324 323
325 void HTMLBodyElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) const 324 void HTMLBodyElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) const
326 { 325 {
327 HTMLElement::addSubresourceAttributeURLs(urls); 326 HTMLElement::addSubresourceAttributeURLs(urls);
328 327
329 addSubresourceURL(urls, document()->completeURL(getAttribute(backgroundAttr) )); 328 addSubresourceURL(urls, document()->completeURL(getAttribute(backgroundAttr) ));
330 } 329 }
331 330
332 } // namespace WebCore 331 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/HTMLBRElement.cpp ('k') | Source/core/html/HTMLButtonElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698