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

Unified Diff: third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp

Issue 1729013002: blink: Rename enums and functions to not collide with chromium style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: get-names-3: . Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp b/third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp
index e97f3d1b612d806d14adf36bfb52610ff5007a71..df434dd77a7819b2ec364544794f21268932defe 100644
--- a/third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp
@@ -127,7 +127,7 @@ void CSSImageGeneratorValue::putImage(const IntSize& size, PassRefPtr<Image> ima
PassRefPtr<Image> CSSImageGeneratorValue::image(const LayoutObject* layoutObject, const IntSize& size)
{
- switch (classType()) {
+ switch (getClassType()) {
case CrossfadeClass:
return toCSSCrossfadeValue(this)->image(layoutObject, size);
case LinearGradientClass:
@@ -142,7 +142,7 @@ PassRefPtr<Image> CSSImageGeneratorValue::image(const LayoutObject* layoutObject
bool CSSImageGeneratorValue::isFixedSize() const
{
- switch (classType()) {
+ switch (getClassType()) {
case CrossfadeClass:
return toCSSCrossfadeValue(this)->isFixedSize();
case LinearGradientClass:
@@ -157,7 +157,7 @@ bool CSSImageGeneratorValue::isFixedSize() const
IntSize CSSImageGeneratorValue::fixedSize(const LayoutObject* layoutObject)
{
- switch (classType()) {
+ switch (getClassType()) {
case CrossfadeClass:
return toCSSCrossfadeValue(this)->fixedSize(layoutObject);
case LinearGradientClass:
@@ -172,7 +172,7 @@ IntSize CSSImageGeneratorValue::fixedSize(const LayoutObject* layoutObject)
bool CSSImageGeneratorValue::isPending() const
{
- switch (classType()) {
+ switch (getClassType()) {
case CrossfadeClass:
return toCSSCrossfadeValue(this)->isPending();
case LinearGradientClass:
@@ -187,7 +187,7 @@ bool CSSImageGeneratorValue::isPending() const
bool CSSImageGeneratorValue::knownToBeOpaque(const LayoutObject* layoutObject) const
{
- switch (classType()) {
+ switch (getClassType()) {
case CrossfadeClass:
return toCSSCrossfadeValue(this)->knownToBeOpaque(layoutObject);
case LinearGradientClass:
@@ -202,7 +202,7 @@ bool CSSImageGeneratorValue::knownToBeOpaque(const LayoutObject* layoutObject) c
void CSSImageGeneratorValue::loadSubimages(Document* document)
{
- switch (classType()) {
+ switch (getClassType()) {
case CrossfadeClass:
toCSSCrossfadeValue(this)->loadSubimages(document);
break;
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSFontFace.cpp ('k') | third_party/WebKit/Source/core/css/CSSPropertySourceData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698