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

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

Issue 1406923009: Rename DISALLOW_ALLOCATION and ALLOW_ONLY_INLINE_ALLOCATION (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 25 matching lines...) Expand all
36 #include "core/css/CSSValue.h" 36 #include "core/css/CSSValue.h"
37 #include "wtf/Allocator.h" 37 #include "wtf/Allocator.h"
38 #include "wtf/PassOwnPtr.h" 38 #include "wtf/PassOwnPtr.h"
39 #include "wtf/RefPtr.h" 39 #include "wtf/RefPtr.h"
40 40
41 namespace blink { 41 namespace blink {
42 42
43 class CSSParserToken; 43 class CSSParserToken;
44 44
45 struct MediaQueryExpValue { 45 struct MediaQueryExpValue {
46 DISALLOW_ALLOCATION(); 46 DISALLOW_NEW();
47 CSSValueID id; 47 CSSValueID id;
48 double value; 48 double value;
49 CSSPrimitiveValue::UnitType unit; 49 CSSPrimitiveValue::UnitType unit;
50 unsigned numerator; 50 unsigned numerator;
51 unsigned denominator; 51 unsigned denominator;
52 52
53 bool isID; 53 bool isID;
54 bool isValue; 54 bool isValue;
55 bool isRatio; 55 bool isRatio;
56 56
(...skipping 48 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 m_mediaFeature; 108 String m_mediaFeature;
109 MediaQueryExpValue m_expValue; 109 MediaQueryExpValue m_expValue;
110 }; 110 };
111 111
112 } // namespace 112 } // namespace
113 113
114 #endif 114 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/LocalFontFaceSource.h ('k') | third_party/WebKit/Source/core/css/MediaValuesCached.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698