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

Unified Diff: cc/resources/texture_mailbox.cc

Issue 1539203002: Switch to standard integer types in cc/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes Created 5 years 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 | « cc/resources/texture_mailbox.h ('k') | cc/resources/transferable_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/texture_mailbox.cc
diff --git a/cc/resources/texture_mailbox.cc b/cc/resources/texture_mailbox.cc
index 304567132c7b377eff6d4d5e82ad6960c94c72b7..804080c93af9685be1d22d293600533eed0d3822 100644
--- a/cc/resources/texture_mailbox.cc
+++ b/cc/resources/texture_mailbox.cc
@@ -4,6 +4,9 @@
#include "cc/resources/texture_mailbox.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/logging.h"
#include "cc/resources/shared_bitmap.h"
@@ -20,7 +23,7 @@ TextureMailbox::TextureMailbox(const gpu::MailboxHolder& mailbox_holder)
TextureMailbox::TextureMailbox(const gpu::Mailbox& mailbox,
const gpu::SyncToken& sync_token,
- uint32 target)
+ uint32_t target)
: mailbox_holder_(mailbox, sync_token, target),
shared_bitmap_(NULL),
is_overlay_candidate_(false),
@@ -28,7 +31,7 @@ TextureMailbox::TextureMailbox(const gpu::Mailbox& mailbox,
TextureMailbox::TextureMailbox(const gpu::Mailbox& mailbox,
const gpu::SyncToken& sync_token,
- uint32 target,
+ uint32_t target,
const gfx::Size& size_in_pixels,
bool is_overlay_candidate)
: mailbox_holder_(mailbox, sync_token, target),
« no previous file with comments | « cc/resources/texture_mailbox.h ('k') | cc/resources/transferable_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698