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

Unified Diff: third_party/WebKit/Source/platform/image-decoders/FastSharedBufferReader.cpp

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/FastSharedBufferReader.cpp
diff --git a/third_party/WebKit/Source/platform/image-decoders/FastSharedBufferReader.cpp b/third_party/WebKit/Source/platform/image-decoders/FastSharedBufferReader.cpp
index 34dc1f14d2a4aaaa4dcfbf6dfc01780a747fc9c4..eb2f4f99a6d2eb737678b90fc87b3f07e96d536e 100644
--- a/third_party/WebKit/Source/platform/image-decoders/FastSharedBufferReader.cpp
+++ b/third_party/WebKit/Source/platform/image-decoders/FastSharedBufferReader.cpp
@@ -61,7 +61,7 @@ const char* FastSharedBufferReader::GetConsecutiveData(size_t data_position,
data_position + length <= data_position_ + segment_length_)
return segment_ + data_position - data_position_;
- // Return a pointer into |m_data| if the request doesn't span segments.
+ // Return a pointer into |data_| if the request doesn't span segments.
GetSomeDataInternal(data_position);
if (length <= segment_length_)
return segment_;

Powered by Google App Engine
This is Rietveld 408576698