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

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

Issue 335313003: MediaQueryEvaluator getting mediaType from MediaValues (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added a comment Created 6 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 | « no previous file | 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 * CSS Media Query Evaluator 2 * CSS Media Query Evaluator
3 * 3 *
4 * Copyright (C) 2006 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com>. 4 * Copyright (C) 2006 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com>.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 // Creates evaluator which evaluates only simple media queries 58 // Creates evaluator which evaluates only simple media queries
59 // Evaluator returns true for "all", and returns value of \mediaFeatureResul t 59 // Evaluator returns true for "all", and returns value of \mediaFeatureResul t
60 // for any media features 60 // for any media features
61 61
62 explicit MediaQueryEvaluator(bool mediaFeatureResult = false); 62 explicit MediaQueryEvaluator(bool mediaFeatureResult = false);
63 63
64 // Creates evaluator which evaluates only simple media queries 64 // Creates evaluator which evaluates only simple media queries
65 // Evaluator returns true for acceptedMediaType and returns value of \media featureResult 65 // Evaluator returns true for acceptedMediaType and returns value of \media featureResult
66 // for any media features 66 // for any media features
67 67
68 MediaQueryEvaluator(const String& acceptedMediaType, bool mediaFeatureResult = false);
69 MediaQueryEvaluator(const char* acceptedMediaType, bool mediaFeatureResult = false); 68 MediaQueryEvaluator(const char* acceptedMediaType, bool mediaFeatureResult = false);
70 69
71 // Creates evaluator which evaluates full media queries 70 // Creates evaluator which evaluates full media queries
72 MediaQueryEvaluator(const String& acceptedMediaType, LocalFrame*); 71 MediaQueryEvaluator(LocalFrame*);
73 72
74 // Creates evaluator which evaluates in a thread-safe manner a subset of med ia values 73 // Creates evaluator which evaluates in a thread-safe manner a subset of med ia values
75 MediaQueryEvaluator(const String& acceptedMediaType, const MediaValues&); 74 MediaQueryEvaluator(const MediaValues&);
76 75
77 ~MediaQueryEvaluator(); 76 ~MediaQueryEvaluator();
78 77
79 bool mediaTypeMatch(const String& mediaTypeToMatch) const; 78 bool mediaTypeMatch(const String& mediaTypeToMatch) const;
80 bool mediaTypeMatchSpecific(const char* mediaTypeToMatch) const; 79 bool mediaTypeMatchSpecific(const char* mediaTypeToMatch) const;
81 80
82 // Evaluates a list of media queries 81 // Evaluates a list of media queries
83 bool eval(const MediaQuerySet*, MediaQueryResultList* = 0) const; 82 bool eval(const MediaQuerySet*, MediaQueryResultList* = 0) const;
84 83
85 // Evaluates media query subexpression, ie "and (media-feature: value)" part 84 // Evaluates media query subexpression, ie "and (media-feature: value)" part
86 bool eval(const MediaQueryExp*) const; 85 bool eval(const MediaQueryExp*) const;
87 86
88 private: 87 private:
88 const String mediaType() const;
89
89 String m_mediaType; 90 String m_mediaType;
90 bool m_expectedResult; 91 bool m_expectedResult;
91 RefPtr<MediaValues> m_mediaValues; 92 RefPtr<MediaValues> m_mediaValues;
92 }; 93 };
93 94
94 } // namespace 95 } // namespace
95 #endif 96 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/core/css/MediaQueryEvaluator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698