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

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

Issue 2813863003: Rewrite references to "wtf/" to "platform/wtf/" in core/css and core/style. (Closed)
Patch Set: Rebase. Created 3 years, 8 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 * 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 12 matching lines...) Expand all
23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28 #ifndef MediaQueryEvaluator_h 28 #ifndef MediaQueryEvaluator_h
29 #define MediaQueryEvaluator_h 29 #define MediaQueryEvaluator_h
30 30
31 #include "core/CoreExport.h" 31 #include "core/CoreExport.h"
32 #include "platform/heap/Handle.h" 32 #include "platform/heap/Handle.h"
33 #include "wtf/text/WTFString.h" 33 #include "platform/wtf/text/WTFString.h"
34 34
35 namespace blink { 35 namespace blink {
36 class LocalFrame; 36 class LocalFrame;
37 class MediaQuery; 37 class MediaQuery;
38 class MediaQueryExp; 38 class MediaQueryExp;
39 class MediaQueryResult; 39 class MediaQueryResult;
40 class MediaQuerySet; 40 class MediaQuerySet;
41 class MediaValues; 41 class MediaValues;
42 class MediaValuesInitialViewport; 42 class MediaValuesInitialViewport;
43 43
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 99
100 private: 100 private:
101 const String MediaType() const; 101 const String MediaType() const;
102 102
103 String media_type_; 103 String media_type_;
104 Member<MediaValues> media_values_; 104 Member<MediaValues> media_values_;
105 }; 105 };
106 106
107 } // namespace blink 107 } // namespace blink
108 #endif 108 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/MediaQuery.cpp ('k') | third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698