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

Side by Side Diff: third_party/WebKit/Source/core/css/MediaQueryExp.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 2 * CSS Media Query
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 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 5 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 16 matching lines...) Expand all
27 */ 27 */
28 28
29 #ifndef MediaQueryExp_h 29 #ifndef MediaQueryExp_h
30 #define MediaQueryExp_h 30 #define MediaQueryExp_h
31 31
32 #include "core/CSSValueKeywords.h" 32 #include "core/CSSValueKeywords.h"
33 #include "core/CoreExport.h" 33 #include "core/CoreExport.h"
34 #include "core/MediaFeatureNames.h" 34 #include "core/MediaFeatureNames.h"
35 #include "core/css/CSSPrimitiveValue.h" 35 #include "core/css/CSSPrimitiveValue.h"
36 #include "core/css/CSSValue.h" 36 #include "core/css/CSSValue.h"
37 #include "wtf/Allocator.h" 37 #include "platform/wtf/Allocator.h"
38 #include "wtf/RefPtr.h" 38 #include "platform/wtf/RefPtr.h"
39 39
40 namespace blink { 40 namespace blink {
41 41
42 class CSSParserToken; 42 class CSSParserToken;
43 43
44 struct MediaQueryExpValue { 44 struct MediaQueryExpValue {
45 DISALLOW_NEW(); 45 DISALLOW_NEW();
46 CSSValueID id; 46 CSSValueID id;
47 double value; 47 double value;
48 CSSPrimitiveValue::UnitType unit; 48 CSSPrimitiveValue::UnitType unit;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 private: 105 private:
106 MediaQueryExp(const String&, const MediaQueryExpValue&); 106 MediaQueryExp(const String&, const MediaQueryExpValue&);
107 107
108 String media_feature_; 108 String media_feature_;
109 MediaQueryExpValue exp_value_; 109 MediaQueryExpValue exp_value_;
110 }; 110 };
111 111
112 } // namespace blink 112 } // namespace blink
113 113
114 #endif 114 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/MediaQueryEvaluatorTest.cpp ('k') | third_party/WebKit/Source/core/css/MediaQueryExp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698