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

Side by Side Diff: Source/core/html/HTMLFrameElementBase.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.h ('k') | Source/core/html/HTMLFrameSetElement.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, 2008, 2009 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2006, 2008, 2009 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 "Document.h" 28 #include "Document.h"
29 #include "EventNames.h" 29 #include "EventNames.h"
30 #include "FocusController.h" 30 #include "FocusController.h"
31 #include "Frame.h" 31 #include "Frame.h"
32 #include "FrameLoader.h" 32 #include "FrameLoader.h"
33 #include "FrameView.h" 33 #include "FrameView.h"
34 #include "HTMLNames.h" 34 #include "HTMLNames.h"
35 #include "HTMLParserIdioms.h" 35 #include "HTMLParserIdioms.h"
36 #include "KURL.h"
37 #include "Page.h" 36 #include "Page.h"
38 #include "RenderPart.h" 37 #include "RenderPart.h"
39 #include "ScriptController.h" 38 #include "ScriptController.h"
40 #include "ScriptEventListener.h" 39 #include "ScriptEventListener.h"
41 #include "Settings.h" 40 #include "Settings.h"
41 #include "core/platform/KURL.h"
42 42
43 namespace WebCore { 43 namespace WebCore {
44 44
45 using namespace HTMLNames; 45 using namespace HTMLNames;
46 46
47 HTMLFrameElementBase::HTMLFrameElementBase(const QualifiedName& tagName, Documen t* document) 47 HTMLFrameElementBase::HTMLFrameElementBase(const QualifiedName& tagName, Documen t* document)
48 : HTMLFrameOwnerElement(tagName, document) 48 : HTMLFrameOwnerElement(tagName, document)
49 , m_scrolling(ScrollbarAuto) 49 , m_scrolling(ScrollbarAuto)
50 , m_marginWidth(-1) 50 , m_marginWidth(-1)
51 , m_marginHeight(-1) 51 , m_marginHeight(-1)
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 224
225 int HTMLFrameElementBase::height() 225 int HTMLFrameElementBase::height()
226 { 226 {
227 document()->updateLayoutIgnorePendingStylesheets(); 227 document()->updateLayoutIgnorePendingStylesheets();
228 if (!renderBox()) 228 if (!renderBox())
229 return 0; 229 return 0;
230 return renderBox()->height(); 230 return renderBox()->height();
231 } 231 }
232 232
233 } // namespace WebCore 233 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/HTMLFrameElementBase.h ('k') | Source/core/html/HTMLFrameSetElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698