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

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

Issue 2856993002: Fix comments after Blink rename (Closed)
Patch Set: Re-aligning comment Created 3 years, 8 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/webp/WEBPImageDecoder.h
diff --git a/third_party/WebKit/Source/platform/image-decoders/webp/WEBPImageDecoder.h b/third_party/WebKit/Source/platform/image-decoders/webp/WEBPImageDecoder.h
index f680ab2c85d58499d2fb50d977ada3c02f396dc5..483f213e8cdabf2a8eaf9a4b10dbe8bc7d7971be 100644
--- a/third_party/WebKit/Source/platform/image-decoders/webp/WEBPImageDecoder.h
+++ b/third_party/WebKit/Source/platform/image-decoders/webp/WEBPImageDecoder.h
@@ -63,10 +63,10 @@ class PLATFORM_EXPORT WEBPImageDecoder final : public ImageDecoder {
// For WebP images, the frame status needs to be FrameComplete to decode
// subsequent frames that depend on frame |index|. The reason for this is that
- // WebP uses the previous frame for alpha blending, in applyPostProcessing().
+ // WebP uses the previous frame for alpha blending, in ApplyPostProcessing().
//
// Before calling this, verify that frame |index| exists by checking that
- // |index| is smaller than |m_frameBufferCache|.size().
+ // |index| is smaller than |frame_buffer_cache_|.size().
bool FrameStatusSufficientForSuccessors(size_t index) override {
DCHECK(index < frame_buffer_cache_.size());
return frame_buffer_cache_[index].GetStatus() == ImageFrame::kFrameComplete;
@@ -80,13 +80,13 @@ class PLATFORM_EXPORT WEBPImageDecoder final : public ImageDecoder {
void ReadColorProfile();
bool UpdateDemuxer();
- // Set |m_frameBackgroundHasAlpha| based on this frame's characteristics.
+ // Set |frame_background_has_alpha_| based on this frame's characteristics.
// Before calling this method, the caller must verify that the frame exists.
void OnInitFrameBuffer(size_t frame_index) override;
// When the blending method of this frame is BlendAtopPreviousFrame, the
// previous frame's buffer is necessary to decode this frame in
- // applyPostProcessing, so we can't take over the data. Before calling this
+ // ApplyPostProcessing, so we can't take over the data. Before calling this
// method, the caller must verify that the frame exists.
bool CanReusePreviousFrameBuffer(size_t frame_index) const override;

Powered by Google App Engine
This is Rietveld 408576698