Chromium Code Reviews| Index: Source/core/css/CSSValueIDHelper.h |
| diff --git a/Source/core/css/Pair.cpp b/Source/core/css/CSSValueIDHelper.h |
| similarity index 52% |
| copy from Source/core/css/Pair.cpp |
| copy to Source/core/css/CSSValueIDHelper.h |
| index 5362b6b52747f321f8c880c5518db518edd0230f..b2d4ff41644cbe84f3b5a757fe3e2da00a47ab9f 100644 |
| --- a/Source/core/css/Pair.cpp |
| +++ b/Source/core/css/CSSValueIDHelper.h |
| @@ -1,16 +1,18 @@ |
| // Copyright 2014 The Chromium Authors. All rights reserved. |
| +// |
|
abarth-chromium
2014/03/01 07:28:25
I think this line isn't supposed to be here.
|
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#include "config.h" |
| -#include "core/css/Pair.h" |
| +#ifndef CSSValueIDHelper_h |
| +#define CSSValueIDHelper_h |
| + |
| +#include "CSSValueKeywords.h" |
| + |
| +class CSSParserString; |
| namespace WebCore { |
| -void Pair::trace(Visitor* visitor) |
| -{ |
| - visitor->trace(m_first); |
| - visitor->trace(m_second); |
| -} |
| +CSSValueID cssValueKeywordID(const CSSParserString&); |
| } |
| +#endif |