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

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: 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2005, 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2013 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 macro(min_device_aspect_ratio, "min-device-aspect-ratio") \ 53 macro(min_device_aspect_ratio, "min-device-aspect-ratio") \
54 macro(min_device_pixel_ratio, "-webkit-min-device-pixel-ratio") \ 54 macro(min_device_pixel_ratio, "-webkit-min-device-pixel-ratio") \
55 macro(min_device_height, "min-device-height") \ 55 macro(min_device_height, "min-device-height") \
56 macro(min_device_width, "min-device-width") \ 56 macro(min_device_width, "min-device-width") \
57 macro(min_height, "min-height") \ 57 macro(min_height, "min-height") \
58 macro(min_monochrome, "min-monochrome") \ 58 macro(min_monochrome, "min-monochrome") \
59 macro(min_width, "min-width") \ 59 macro(min_width, "min-width") \
60 macro(min_resolution, "min-resolution") \ 60 macro(min_resolution, "min-resolution") \
61 macro(pointer, "pointer") \ 61 macro(pointer, "pointer") \
62 macro(resolution, "resolution") \ 62 macro(resolution, "resolution") \
63 macro(scan, "scan") \
63 macro(transform_2d, "-webkit-transform-2d") \ 64 macro(transform_2d, "-webkit-transform-2d") \
64 macro(transform_3d, "-webkit-transform-3d") \ 65 macro(transform_3d, "-webkit-transform-3d") \
65 macro(transition, "-webkit-transition") \ 66 macro(transition, "-webkit-transition") \
66 macro(animation, "-webkit-animation") \ 67 macro(animation, "-webkit-animation") \
67 macro(view_mode, "-webkit-view-mode") 68 macro(view_mode, "-webkit-view-mode")
68 69
69 // end of macro 70 // end of macro
70 71
71 #ifndef CSS_MEDIAQUERY_NAMES_HIDE_GLOBALS 72 #ifndef CSS_MEDIAQUERY_NAMES_HIDE_GLOBALS
72 #define CSS_MEDIAQUERY_NAMES_DECLARE(name, str) extern const AtomicString na me##MediaFeature; 73 #define CSS_MEDIAQUERY_NAMES_DECLARE(name, str) extern const AtomicString na me##MediaFeature;
73 CSS_MEDIAQUERY_NAMES_FOR_EACH_MEDIAFEATURE(CSS_MEDIAQUERY_NAMES_DECLARE) 74 CSS_MEDIAQUERY_NAMES_FOR_EACH_MEDIAFEATURE(CSS_MEDIAQUERY_NAMES_DECLARE)
74 #undef CSS_MEDIAQUERY_NAMES_DECLARE 75 #undef CSS_MEDIAQUERY_NAMES_DECLARE
75 #endif 76 #endif
76 77
77 void init(); 78 void init();
78 79
79 } // namespace MediaFeatureNames 80 } // namespace MediaFeatureNames
80 } // namespace WebCore 81 } // namespace WebCore
81 82
82 #endif // MediaFeatureNames_h 83 #endif // MediaFeatureNames_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698