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

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

Issue 16646002: Move the CSS Device Adaptation @viewport rule support behind a runtime flag (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: For landing Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/CSSPropertyNames.in ('k') | Source/core/css/CSSRule.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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * (C) 2002-2003 Dirk Mueller (mueller@kde.org) 3 * (C) 2002-2003 Dirk Mueller (mueller@kde.org)
4 * Copyright (C) 2002, 2006, 2007, 2012 Apple Inc. All rights reserved. 4 * Copyright (C) 2002, 2006, 2007, 2012 Apple Inc. All rights reserved.
5 * Copyright (C) 2011 Andreas Kling (kling@webkit.org) 5 * Copyright (C) 2011 Andreas Kling (kling@webkit.org)
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 IMPORT_RULE, 44 IMPORT_RULE,
45 MEDIA_RULE, 45 MEDIA_RULE,
46 FONT_FACE_RULE, 46 FONT_FACE_RULE,
47 PAGE_RULE, 47 PAGE_RULE,
48 // 7 was VARIABLES_RULE; we now match other browsers with 7 as 48 // 7 was VARIABLES_RULE; we now match other browsers with 7 as
49 // KEYFRAMES_RULE: 49 // KEYFRAMES_RULE:
50 // <https://bugs.webkit.org/show_bug.cgi?id=71293>. 50 // <https://bugs.webkit.org/show_bug.cgi?id=71293>.
51 WEBKIT_KEYFRAMES_RULE, 51 WEBKIT_KEYFRAMES_RULE,
52 WEBKIT_KEYFRAME_RULE, 52 WEBKIT_KEYFRAME_RULE,
53 SUPPORTS_RULE = 12, 53 SUPPORTS_RULE = 12,
54 #if ENABLE(CSS_DEVICE_ADAPTATION)
55 WEBKIT_VIEWPORT_RULE = 15, 54 WEBKIT_VIEWPORT_RULE = 15,
56 #endif
57 WEBKIT_REGION_RULE = 16, 55 WEBKIT_REGION_RULE = 16,
58 WEBKIT_FILTER_RULE = 17, 56 WEBKIT_FILTER_RULE = 17,
59 HOST_RULE = 1001, 57 HOST_RULE = 1001,
60 }; 58 };
61 59
62 virtual Type type() const = 0; 60 virtual Type type() const = 0;
63 virtual String cssText() const = 0; 61 virtual String cssText() const = 0;
64 virtual void reattach(StyleRuleBase*) = 0; 62 virtual void reattach(StyleRuleBase*) = 0;
65 virtual void reportMemoryUsage(MemoryObjectInfo*) const; 63 virtual void reportMemoryUsage(MemoryObjectInfo*) const;
66 64
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 105
108 union { 106 union {
109 CSSRule* m_parentRule; 107 CSSRule* m_parentRule;
110 CSSStyleSheet* m_parentStyleSheet; 108 CSSStyleSheet* m_parentStyleSheet;
111 }; 109 };
112 }; 110 };
113 111
114 } // namespace WebCore 112 } // namespace WebCore
115 113
116 #endif // CSSRule_h 114 #endif // CSSRule_h
OLDNEW
« no previous file with comments | « Source/core/css/CSSPropertyNames.in ('k') | Source/core/css/CSSRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698