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

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

Issue 1238943004: CSSValue Immediates: Replace CSSValue usage with const references (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cssvalue_patch_1
Patch Set: Rebase Created 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@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 Lesser General Public 6 * modify it under the terms of the GNU Lesser 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,
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 virtual String getPropertyShorthand(const String& propertyName) override; 90 virtual String getPropertyShorthand(const String& propertyName) override;
91 virtual bool isPropertyImplicit(const String& propertyName) override; 91 virtual bool isPropertyImplicit(const String& propertyName) override;
92 virtual void setProperty(const String& propertyName, const String& value, co nst String& priority, ExceptionState&) override; 92 virtual void setProperty(const String& propertyName, const String& value, co nst String& priority, ExceptionState&) override;
93 virtual String removeProperty(const String& propertyName, ExceptionState&) o verride; 93 virtual String removeProperty(const String& propertyName, ExceptionState&) o verride;
94 virtual String cssText() const override; 94 virtual String cssText() const override;
95 virtual void setCSSText(const String&, ExceptionState&) override; 95 virtual void setCSSText(const String&, ExceptionState&) override;
96 virtual NullableCSSValue getPropertyCSSValueInternal(CSSPropertyID) override ; 96 virtual NullableCSSValue getPropertyCSSValueInternal(CSSPropertyID) override ;
97 virtual String getPropertyValueInternal(CSSPropertyID) override; 97 virtual String getPropertyValueInternal(CSSPropertyID) override;
98 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool im portant, ExceptionState&) override; 98 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool im portant, ExceptionState&) override;
99 99
100 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue) const overrid e; 100 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue&) const overri de;
101 101
102 RefPtrWillBeMember<Node> m_node; 102 RefPtrWillBeMember<Node> m_node;
103 PseudoId m_pseudoElementSpecifier; 103 PseudoId m_pseudoElementSpecifier;
104 bool m_allowVisitedStyle; 104 bool m_allowVisitedStyle;
105 #if !ENABLE(OILPAN) 105 #if !ENABLE(OILPAN)
106 unsigned m_refCount; 106 unsigned m_refCount;
107 #endif 107 #endif
108 }; 108 };
109 109
110 } // namespace blink 110 } // namespace blink
111 111
112 #endif // CSSComputedStyleDeclaration_h 112 #endif // CSSComputedStyleDeclaration_h
OLDNEW
« no previous file with comments | « Source/core/animation/css/CSSAnimations.cpp ('k') | Source/core/css/CSSComputedStyleDeclaration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698