| Index: gpu/command_buffer/common/gles2_cmd_utils.h | 
| diff --git a/gpu/command_buffer/common/gles2_cmd_utils.h b/gpu/command_buffer/common/gles2_cmd_utils.h | 
| index 68ff41b655c3f35ab33de086cfd418f16b62359f..014dfa72161d73c6e53c950cd9e699d3a428dfcd 100644 | 
| --- a/gpu/command_buffer/common/gles2_cmd_utils.h | 
| +++ b/gpu/command_buffer/common/gles2_cmd_utils.h | 
| @@ -109,16 +109,16 @@ class GLES2_UTILS_EXPORT GLES2Util { | 
|  | 
| // Computes the size of an image row including alignment padding | 
| static bool ComputeImagePaddedRowSize( | 
| -    int width, int format, int type, int unpack_alignment, | 
| -    uint32* padded_row_size); | 
| +      int width, int format, int type, int unpack_alignment, | 
| +      uint32* padded_row_size); | 
|  | 
| // Computes the size of image data for TexImage2D and TexSubImage2D. | 
| // Optionally the unpadded and padded row sizes can be returned. If height < 2 | 
| // then the padded_row_size will be the same as the unpadded_row_size since | 
| // padding is not necessary. | 
| static bool ComputeImageDataSizes( | 
| -    int width, int height, int format, int type, int unpack_alignment, | 
| -    uint32* size, uint32* unpadded_row_size, uint32* padded_row_size); | 
| +      int width, int height, int format, int type, int unpack_alignment, | 
| +      uint32* size, uint32* unpadded_row_size, uint32* padded_row_size); | 
|  | 
| static size_t RenderbufferBytesPerPixel(int format); | 
|  | 
|  |