| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MediaQueryParser_h | 5 #ifndef MediaQueryParser_h |
| 6 #define MediaQueryParser_h | 6 #define MediaQueryParser_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/css/MediaList.h" | 9 #include "core/css/MediaList.h" |
| 10 #include "core/css/MediaQuery.h" | 10 #include "core/css/MediaQuery.h" |
| 11 #include "core/css/MediaQueryExp.h" | 11 #include "core/css/MediaQueryExp.h" |
| 12 #include "core/css/parser/CSSParserToken.h" | 12 #include "core/css/parser/CSSParserToken.h" |
| 13 #include "core/css/parser/CSSParserTokenRange.h" | 13 #include "core/css/parser/CSSParserTokenRange.h" |
| 14 #include "core/css/parser/MediaQueryBlockWatcher.h" | 14 #include "core/css/parser/MediaQueryBlockWatcher.h" |
| 15 #include "wtf/text/WTFString.h" | 15 #include "platform/wtf/text/WTFString.h" |
| 16 | 16 |
| 17 namespace blink { | 17 namespace blink { |
| 18 | 18 |
| 19 class MediaQuerySet; | 19 class MediaQuerySet; |
| 20 | 20 |
| 21 class MediaQueryData { | 21 class MediaQueryData { |
| 22 STACK_ALLOCATED(); | 22 STACK_ALLOCATED(); |
| 23 WTF_MAKE_NONCOPYABLE(MediaQueryData); | 23 WTF_MAKE_NONCOPYABLE(MediaQueryData); |
| 24 | 24 |
| 25 private: | 25 private: |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 const static State kReadFeatureValue; | 108 const static State kReadFeatureValue; |
| 109 const static State kReadFeatureEnd; | 109 const static State kReadFeatureEnd; |
| 110 const static State kSkipUntilComma; | 110 const static State kSkipUntilComma; |
| 111 const static State kSkipUntilBlockEnd; | 111 const static State kSkipUntilBlockEnd; |
| 112 const static State kDone; | 112 const static State kDone; |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 } // namespace blink | 115 } // namespace blink |
| 116 | 116 |
| 117 #endif // MediaQueryParser_h | 117 #endif // MediaQueryParser_h |
| OLD | NEW |