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

Unified Diff: content/browser/compositor/offscreen_browser_compositor_output_surface.h

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/browser/compositor/offscreen_browser_compositor_output_surface.h
diff --git a/content/browser/compositor/offscreen_browser_compositor_output_surface.h b/content/browser/compositor/offscreen_browser_compositor_output_surface.h
index 3110b07874b8bff19036e6625dbd58517856ec31..abbb20c065d5e53d5172d0c731a3a325f2ce58ca 100644
--- a/content/browser/compositor/offscreen_browser_compositor_output_surface.h
+++ b/content/browser/compositor/offscreen_browser_compositor_output_surface.h
@@ -5,9 +5,13 @@
#ifndef CONTENT_BROWSER_COMPOSITOR_OFFSCREEN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
#define CONTENT_BROWSER_COMPOSITOR_OFFSCREEN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
+#include <stdint.h>
+
#include "base/cancelable_callback.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
+#include "build/build_config.h"
#include "content/browser/compositor/browser_compositor_output_surface.h"
namespace ui {
@@ -49,7 +53,7 @@ class OffscreenBrowserCompositorOutputSurface
bool SurfaceShouldNotShowFramesAfterSuspendForRecycle() const override;
#endif
- uint32 fbo_;
+ uint32_t fbo_;
bool is_backbuffer_discarded_;
scoped_ptr<ReflectorTexture> reflector_texture_;

Powered by Google App Engine
This is Rietveld 408576698