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

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

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu 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/html/HTMLFrameElementBase.cpp ('k') | Source/core/html/HTMLInputElement.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) 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, 2009, 2010 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2006, 2009, 2010 Apple Inc. All rights reserved.
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 15 matching lines...) Expand all
26 26
27 #include "Attribute.h" 27 #include "Attribute.h"
28 #include "CSSPropertyNames.h" 28 #include "CSSPropertyNames.h"
29 #include "Document.h" 29 #include "Document.h"
30 #include "Event.h" 30 #include "Event.h"
31 #include "EventNames.h" 31 #include "EventNames.h"
32 #include "Frame.h" 32 #include "Frame.h"
33 #include "FrameLoader.h" 33 #include "FrameLoader.h"
34 #include "FrameLoaderClient.h" 34 #include "FrameLoaderClient.h"
35 #include "HTMLNames.h" 35 #include "HTMLNames.h"
36 #include "Length.h"
37 #include "MouseEvent.h" 36 #include "MouseEvent.h"
38 #include "NodeRenderingContext.h" 37 #include "NodeRenderingContext.h"
39 #include "RenderFrameSet.h" 38 #include "RenderFrameSet.h"
40 #include "ScriptEventListener.h" 39 #include "ScriptEventListener.h"
41 #include "Text.h" 40 #include "Text.h"
41 #include "core/platform/Length.h"
42 42
43 namespace WebCore { 43 namespace WebCore {
44 44
45 using namespace HTMLNames; 45 using namespace HTMLNames;
46 46
47 HTMLFrameSetElement::HTMLFrameSetElement(const QualifiedName& tagName, Document* document) 47 HTMLFrameSetElement::HTMLFrameSetElement(const QualifiedName& tagName, Document* document)
48 : HTMLElement(tagName, document) 48 : HTMLElement(tagName, document)
49 , m_totalRows(1) 49 , m_totalRows(1)
50 , m_totalCols(1) 50 , m_totalCols(1)
51 , m_border(6) 51 , m_border(6)
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 bool HTMLFrameSetElement::willRecalcStyle(StyleChange) 203 bool HTMLFrameSetElement::willRecalcStyle(StyleChange)
204 { 204 {
205 if (needsStyleRecalc() && renderer()) { 205 if (needsStyleRecalc() && renderer()) {
206 renderer()->setNeedsLayout(true); 206 renderer()->setNeedsLayout(true);
207 clearNeedsStyleRecalc(); 207 clearNeedsStyleRecalc();
208 } 208 }
209 return true; 209 return true;
210 } 210 }
211 211
212 } // namespace WebCore 212 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/HTMLFrameElementBase.cpp ('k') | Source/core/html/HTMLInputElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698