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

Unified Diff: third_party/WebKit/Source/platform/image-decoders/ImageFrame.h

Issue 1746283002: Rename enums/functions that collide in chromium style in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: get-names-13-platform: . 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/platform/image-decoders/ImageFrame.h
diff --git a/third_party/WebKit/Source/platform/image-decoders/ImageFrame.h b/third_party/WebKit/Source/platform/image-decoders/ImageFrame.h
index b5d1490fa484e330e0b3ce1084a75bf873d456e1..655c9ef8a2ab8e3e7a105e7b432dc7677cc786bd 100644
--- a/third_party/WebKit/Source/platform/image-decoders/ImageFrame.h
+++ b/third_party/WebKit/Source/platform/image-decoders/ImageFrame.h
@@ -120,10 +120,10 @@ public:
bool hasAlpha() const;
const IntRect& originalFrameRect() const { return m_originalFrameRect; }
- Status status() const { return m_status; }
+ Status getStatus() const { return m_status; }
unsigned duration() const { return m_duration; }
- DisposalMethod disposalMethod() const { return m_disposalMethod; }
- AlphaBlendSource alphaBlendSource() const { return m_alphaBlendSource; }
+ DisposalMethod getDisposalMethod() const { return m_disposalMethod; }
+ AlphaBlendSource getAlphaBlendSource() const { return m_alphaBlendSource; }
bool premultiplyAlpha() const { return m_premultiplyAlpha; }
SkBitmap::Allocator* allocator() const { return m_allocator; }
const SkBitmap& getSkBitmap() const { return m_bitmap; }

Powered by Google App Engine
This is Rietveld 408576698