Chromium Code Reviews| Index: pdf/instance.h |
| diff --git a/pdf/instance.h b/pdf/instance.h |
| index 07c1a196ed29866ccec2eff5fa7cc62aa8bf5270..c377b032c0f69c5490bbb58e89a1e5af72b44f20 100644 |
| --- a/pdf/instance.h |
| +++ b/pdf/instance.h |
| @@ -228,7 +228,7 @@ class Instance : public pp::InstancePrivate, |
| int GetDocumentPixelHeight() const; |
| // Draws a rectangle with the specified dimensions and color in our buffer. |
| - void FillRect(const pp::Rect& rect, unsigned int color); |
| + void FillRect(const pp::Rect& rect, uint32 color); |
|
Peter Kasting
2014/07/08 21:28:25
The changes from unsigned int to uint32 in this CL
|
| std::vector<pp::ImageData> GetThumbnailResources(); |
| std::vector<pp::ImageData> GetProgressBarResources(pp::ImageData* background); |
| @@ -410,7 +410,7 @@ class Instance : public pp::InstancePrivate, |
| struct BackgroundPart { |
| pp::Rect location; |
| - unsigned int color; |
| + uint32 color; |
| }; |
| std::vector<BackgroundPart> background_parts_; |