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

Side by Side Diff: Source/core/style/ComputedStyle.h

Issue 1175023002: Add missing TextRun includes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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/shadow/DateTimeSymbolicFieldElement.cpp ('k') | no next file » | 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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 #include "platform/LengthSize.h" 68 #include "platform/LengthSize.h"
69 #include "platform/ThemeTypes.h" 69 #include "platform/ThemeTypes.h"
70 #include "platform/fonts/FontBaseline.h" 70 #include "platform/fonts/FontBaseline.h"
71 #include "platform/fonts/FontDescription.h" 71 #include "platform/fonts/FontDescription.h"
72 #include "platform/geometry/FloatRoundedRect.h" 72 #include "platform/geometry/FloatRoundedRect.h"
73 #include "platform/geometry/LayoutRectOutsets.h" 73 #include "platform/geometry/LayoutRectOutsets.h"
74 #include "platform/graphics/Color.h" 74 #include "platform/graphics/Color.h"
75 #include "platform/graphics/GraphicsTypes.h" 75 #include "platform/graphics/GraphicsTypes.h"
76 #include "platform/scroll/ScrollableArea.h" 76 #include "platform/scroll/ScrollableArea.h"
77 #include "platform/text/TextDirection.h" 77 #include "platform/text/TextDirection.h"
78 #include "platform/text/TextRun.h"
78 #include "platform/text/UnicodeBidi.h" 79 #include "platform/text/UnicodeBidi.h"
79 #include "platform/transforms/TransformOperations.h" 80 #include "platform/transforms/TransformOperations.h"
80 #include "public/platform/WebScrollBlocksOn.h" 81 #include "public/platform/WebScrollBlocksOn.h"
81 #include "wtf/Forward.h" 82 #include "wtf/Forward.h"
82 #include "wtf/OwnPtr.h" 83 #include "wtf/OwnPtr.h"
83 #include "wtf/RefCounted.h" 84 #include "wtf/RefCounted.h"
84 #include "wtf/StdLibExtras.h" 85 #include "wtf/StdLibExtras.h"
85 #include "wtf/Vector.h" 86 #include "wtf/Vector.h"
86 87
87 template<typename T, typename U> inline bool compareEqual(const T& t, const U& u ) { return t == static_cast<T>(u); } 88 template<typename T, typename U> inline bool compareEqual(const T& t, const U& u ) { return t == static_cast<T>(u); }
(...skipping 1829 matching lines...) Expand 10 before | Expand all | Expand 10 after
1917 } 1918 }
1918 1919
1919 inline bool ComputedStyle::hasPseudoElementStyle() const 1920 inline bool ComputedStyle::hasPseudoElementStyle() const
1920 { 1921 {
1921 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; 1922 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK;
1922 } 1923 }
1923 1924
1924 } // namespace blink 1925 } // namespace blink
1925 1926
1926 #endif // ComputedStyle_h 1927 #endif // ComputedStyle_h
OLDNEW
« no previous file with comments | « Source/core/html/shadow/DateTimeSymbolicFieldElement.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698