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

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

Issue 21006006: Add forEach() to CSSVariablesMap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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
OLDNEW
1 /* 1 /*
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 #ifndef CSSStyleDeclaration_h 21 #ifndef CSSStyleDeclaration_h
22 #define CSSStyleDeclaration_h 22 #define CSSStyleDeclaration_h
23 23
24 #include "CSSPropertyNames.h" 24 #include "CSSPropertyNames.h"
25 #include "bindings/v8/ScriptWrappable.h" 25 #include "bindings/v8/ScriptWrappable.h"
26 #include "core/css/CSSVariablesIterator.h"
26 #include "core/css/CSSVariablesMap.h" 27 #include "core/css/CSSVariablesMap.h"
27 #include "wtf/Forward.h" 28 #include "wtf/Forward.h"
28 #include "wtf/Noncopyable.h" 29 #include "wtf/Noncopyable.h"
29 30
30 namespace WebCore { 31 namespace WebCore {
31 32
32 class CSSProperty; 33 class CSSProperty;
33 class CSSRule; 34 class CSSRule;
34 class CSSStyleSheet; 35 class CSSStyleSheet;
35 class CSSValue; 36 class CSSValue;
(...skipping 22 matching lines...) Expand all
58 virtual bool isPropertyImplicit(const String& propertyName) = 0; 59 virtual bool isPropertyImplicit(const String& propertyName) = 0;
59 virtual void setProperty(const String& propertyName, const String& value, co nst String& priority, ExceptionCode&) = 0; 60 virtual void setProperty(const String& propertyName, const String& value, co nst String& priority, ExceptionCode&) = 0;
60 virtual String removeProperty(const String& propertyName, ExceptionCode&) = 0; 61 virtual String removeProperty(const String& propertyName, ExceptionCode&) = 0;
61 62
62 PassRefPtr<CSSVariablesMap> var(); 63 PassRefPtr<CSSVariablesMap> var();
63 virtual unsigned variableCount() const = 0; 64 virtual unsigned variableCount() const = 0;
64 virtual String variableValue(const AtomicString& name) const = 0; 65 virtual String variableValue(const AtomicString& name) const = 0;
65 virtual void setVariableValue(const AtomicString& name, const String& value, ExceptionCode&) = 0; 66 virtual void setVariableValue(const AtomicString& name, const String& value, ExceptionCode&) = 0;
66 virtual bool removeVariable(const AtomicString& name) = 0; 67 virtual bool removeVariable(const AtomicString& name) = 0;
67 virtual void clearVariables(ExceptionCode&) = 0; 68 virtual void clearVariables(ExceptionCode&) = 0;
69 virtual PassRefPtr<CSSVariablesIterator> variablesIterator() const = 0;
68 70
69 // CSSPropertyID versions of the CSSOM functions to support bindings and edi ting. 71 // CSSPropertyID versions of the CSSOM functions to support bindings and edi ting.
70 // Use the non-virtual methods in the concrete subclasses when possible. 72 // Use the non-virtual methods in the concrete subclasses when possible.
71 // The CSSValue returned by this function should not be exposed to the web a s it may be used by multiple documents at the same time. 73 // The CSSValue returned by this function should not be exposed to the web a s it may be used by multiple documents at the same time.
72 virtual PassRefPtr<CSSValue> getPropertyCSSValueInternal(CSSPropertyID) = 0; 74 virtual PassRefPtr<CSSValue> getPropertyCSSValueInternal(CSSPropertyID) = 0;
73 virtual String getPropertyValueInternal(CSSPropertyID) = 0; 75 virtual String getPropertyValueInternal(CSSPropertyID) = 0;
74 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool im portant, ExceptionCode&) = 0; 76 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool im portant, ExceptionCode&) = 0;
75 77
76 virtual PassRefPtr<MutableStylePropertySet> copyProperties() const = 0; 78 virtual PassRefPtr<MutableStylePropertySet> copyProperties() const = 0;
77 79
78 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const = 0; 80 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const = 0;
79 virtual CSSStyleSheet* parentStyleSheet() const { return 0; } 81 virtual CSSStyleSheet* parentStyleSheet() const { return 0; }
80 82
81 protected: 83 protected:
82 CSSStyleDeclaration() 84 CSSStyleDeclaration()
83 { 85 {
84 ScriptWrappable::init(this); 86 ScriptWrappable::init(this);
85 } 87 }
86 RefPtr<CSSVariablesMap> m_variablesMap; 88 RefPtr<CSSVariablesMap> m_variablesMap;
87 }; 89 };
88 90
89 } // namespace WebCore 91 } // namespace WebCore
90 92
91 #endif // CSSStyleDeclaration_h 93 #endif // CSSStyleDeclaration_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698