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

Side by Side Diff: Source/core/css/CSSValueList.h

Issue 18733007: core/css: Include wtf files using "wtf/foo.h" form. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 7 years, 5 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/css/CSSUnicodeRangeValue.cpp ('k') | Source/core/css/DOMWindowCSS.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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 #ifndef CSSValueList_h 21 #ifndef CSSValueList_h
22 #define CSSValueList_h 22 #define CSSValueList_h
23 23
24 #include "core/css/CSSValue.h" 24 #include "core/css/CSSValue.h"
25 #include <wtf/PassRefPtr.h> 25 #include "wtf/PassRefPtr.h"
26 #include <wtf/Vector.h> 26 #include "wtf/Vector.h"
27 27
28 namespace WebCore { 28 namespace WebCore {
29 29
30 class CSSParserValueList; 30 class CSSParserValueList;
31 31
32 class CSSValueList : public CSSValue { 32 class CSSValueList : public CSSValue {
33 public: 33 public:
34 static PassRefPtr<CSSValueList> createCommaSeparated() 34 static PassRefPtr<CSSValueList> createCommaSeparated()
35 { 35 {
36 return adoptRef(new CSSValueList(CommaSeparator)); 36 return adoptRef(new CSSValueList(CommaSeparator));
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 void advance() { m_position++; ASSERT(m_position <= m_inspector.length());} 123 void advance() { m_position++; ASSERT(m_position <= m_inspector.length());}
124 size_t index() const { return m_position; } 124 size_t index() const { return m_position; }
125 private: 125 private:
126 CSSValueListInspector m_inspector; 126 CSSValueListInspector m_inspector;
127 size_t m_position; 127 size_t m_position;
128 }; 128 };
129 129
130 } // namespace WebCore 130 } // namespace WebCore
131 131
132 #endif // CSSValueList_h 132 #endif // CSSValueList_h
OLDNEW
« no previous file with comments | « Source/core/css/CSSUnicodeRangeValue.cpp ('k') | Source/core/css/DOMWindowCSS.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698