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

Unified Diff: content/renderer/child_frame_compositing_helper.h

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: content/renderer/child_frame_compositing_helper.h
diff --git a/content/renderer/child_frame_compositing_helper.h b/content/renderer/child_frame_compositing_helper.h
index 1f26c9fffe8e0a914a14d8663f0be4856b0053f6..d2d4e78cda2510a40c87334415d1d23c5db862c5 100644
--- a/content/renderer/child_frame_compositing_helper.h
+++ b/content/renderer/child_frame_compositing_helper.h
@@ -5,9 +5,12 @@
#ifndef CONTENT_RENDERER_CHILD_FRAME_COMPOSITING_HELPER_H_
#define CONTENT_RENDERER_CHILD_FRAME_COMPOSITING_HELPER_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/shared_memory.h"
@@ -66,7 +69,7 @@ class CONTENT_EXPORT ChildFrameCompositingHelper
void OnContainerDestroy();
void OnCompositorFrameSwapped(scoped_ptr<cc::CompositorFrame> frame,
int route_id,
- uint32 output_surface_id,
+ uint32_t output_surface_id,
int host_id,
base::SharedMemoryHandle handle);
void OnSetSurface(const cc::SurfaceId& surface_id,
@@ -126,7 +129,7 @@ class CONTENT_EXPORT ChildFrameCompositingHelper
int host_routing_id_;
int last_route_id_;
- uint32 last_output_surface_id_;
+ uint32_t last_output_surface_id_;
int last_host_id_;
bool ack_pending_;
bool opaque_;
« no previous file with comments | « content/renderer/cache_storage/webserviceworkercachestorage_impl.h ('k') | content/renderer/child_frame_compositing_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698