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

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

Issue 13896036: [CSSMQ] Implemented support for the scan media feature. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: another static_cast removed. Created 7 years, 7 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/CSSValueKeywords.in ('k') | Source/core/css/MediaQueryEvaluator.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) 2005, 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2013 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Intel Corporation. All rights reserved. 3 * Copyright (C) 2013 Intel Corporation. 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,
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 macro(minDeviceHeight, "min-device-height") \ 59 macro(minDeviceHeight, "min-device-height") \
60 macro(minDeviceWidth, "min-device-width") \ 60 macro(minDeviceWidth, "min-device-width") \
61 macro(minHeight, "min-height") \ 61 macro(minHeight, "min-height") \
62 macro(minMonochrome, "min-monochrome") \ 62 macro(minMonochrome, "min-monochrome") \
63 macro(minWidth, "min-width") \ 63 macro(minWidth, "min-width") \
64 macro(minResolution, "min-resolution") \ 64 macro(minResolution, "min-resolution") \
65 macro(pointer, "pointer") \ 65 macro(pointer, "pointer") \
66 macro(resolution, "resolution") \ 66 macro(resolution, "resolution") \
67 macro(transform2d, "-webkit-transform-2d") \ 67 macro(transform2d, "-webkit-transform-2d") \
68 macro(transform3d, "-webkit-transform-3d") \ 68 macro(transform3d, "-webkit-transform-3d") \
69 macro(scan, "scan") \
69 macro(transition, "-webkit-transition") \ 70 macro(transition, "-webkit-transition") \
70 macro(animation, "-webkit-animation") \ 71 macro(animation, "-webkit-animation") \
71 macro(viewMode, "-webkit-view-mode") 72 macro(viewMode, "-webkit-view-mode")
72 73
73 // end of macro 74 // end of macro
74 75
75 #ifndef CSS_MEDIAQUERY_NAMES_HIDE_GLOBALS 76 #ifndef CSS_MEDIAQUERY_NAMES_HIDE_GLOBALS
76 #define CSS_MEDIAQUERY_NAMES_DECLARE(name, str) extern const AtomicString name## MediaFeature; 77 #define CSS_MEDIAQUERY_NAMES_DECLARE(name, str) extern const AtomicString name## MediaFeature;
77 CSS_MEDIAQUERY_NAMES_FOR_EACH_MEDIAFEATURE(CSS_MEDIAQUERY_NAMES_DECLARE) 78 CSS_MEDIAQUERY_NAMES_FOR_EACH_MEDIAFEATURE(CSS_MEDIAQUERY_NAMES_DECLARE)
78 #undef CSS_MEDIAQUERY_NAMES_DECLARE 79 #undef CSS_MEDIAQUERY_NAMES_DECLARE
79 #endif 80 #endif
80 81
81 void init(); 82 void init();
82 83
83 } // namespace MediaFeatureNames 84 } // namespace MediaFeatureNames
84 } // namespace WebCore 85 } // namespace WebCore
85 86
86 #endif // MediaFeatureNames_h 87 #endif // MediaFeatureNames_h
OLDNEW
« no previous file with comments | « Source/core/css/CSSValueKeywords.in ('k') | Source/core/css/MediaQueryEvaluator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698