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

Unified Diff: Source/core/html/canvas/DataView.h

Issue 20294002: Fix trailing whitespace in .cpp, .h, and .idl files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 5 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
« no previous file with comments | « Source/core/html/canvas/CheckedInt.h ('k') | Source/core/html/canvas/Float32Array.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/DataView.h
diff --git a/Source/core/html/canvas/DataView.h b/Source/core/html/canvas/DataView.h
index 8b10c426f06d73f10eacaccab5f4a0f506a5e0f3..67afae603b6c5eae9d3767402b489719c0a68a10 100644
--- a/Source/core/html/canvas/DataView.h
+++ b/Source/core/html/canvas/DataView.h
@@ -64,7 +64,7 @@ public:
void setInt16(unsigned byteOffset, int16_t value, bool littleEndian, ExceptionCode&);
void setUint16(unsigned byteOffset, uint16_t value, ExceptionCode& ec) { setUint16(byteOffset, value, false, ec); }
void setUint16(unsigned byteOffset, uint16_t value, bool littleEndian, ExceptionCode&);
- void setInt32(unsigned byteOffset, int32_t value, ExceptionCode& ec) { setInt32(byteOffset, value, false, ec); }
+ void setInt32(unsigned byteOffset, int32_t value, ExceptionCode& ec) { setInt32(byteOffset, value, false, ec); }
void setInt32(unsigned byteOffset, int32_t value, bool littleEndian, ExceptionCode&);
void setUint32(unsigned byteOffset, uint32_t value, ExceptionCode& ec) { setUint32(byteOffset, value, false, ec); }
void setUint32(unsigned byteOffset, uint32_t value, bool littleEndian, ExceptionCode&);
« no previous file with comments | « Source/core/html/canvas/CheckedInt.h ('k') | Source/core/html/canvas/Float32Array.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698