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: blimp/engine/ui/blimp_ui_context_factory.h

Issue 1538253002: Switch to standard integer types in blimp/. (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
« no previous file with comments | « blimp/engine/ui/blimp_screen.cc ('k') | blimp/engine/ui/blimp_ui_context_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/engine/ui/blimp_ui_context_factory.h
diff --git a/blimp/engine/ui/blimp_ui_context_factory.h b/blimp/engine/ui/blimp_ui_context_factory.h
index efadb7022ec6bf97e4492e8db21230bfbe7bd622..acbc39f3b396e21b65ab977e5c46bb9d9f8c07d1 100644
--- a/blimp/engine/ui/blimp_ui_context_factory.h
+++ b/blimp/engine/ui/blimp_ui_context_factory.h
@@ -5,6 +5,8 @@
#ifndef BLIMP_ENGINE_UI_BLIMP_UI_CONTEXT_FACTORY_H_
#define BLIMP_ENGINE_UI_BLIMP_UI_CONTEXT_FACTORY_H_
+#include <stdint.h>
+
#include "base/macros.h"
#include "blimp/common/compositor/blimp_task_graph_runner.h"
#include "ui/compositor/compositor.h"
@@ -27,8 +29,8 @@ class BlimpUiContextFactory : public ui::ContextFactory {
scoped_refptr<cc::ContextProvider> SharedMainThreadContextProvider() override;
void RemoveCompositor(ui::Compositor* compositor) override;
bool DoesCreateTestContexts() override;
- uint32 GetImageTextureTarget(gfx::BufferFormat format,
- gfx::BufferUsage usage) override;
+ uint32_t GetImageTextureTarget(gfx::BufferFormat format,
+ gfx::BufferUsage usage) override;
cc::SharedBitmapManager* GetSharedBitmapManager() override;
gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() override;
cc::TaskGraphRunner* GetTaskGraphRunner() override;
« no previous file with comments | « blimp/engine/ui/blimp_screen.cc ('k') | blimp/engine/ui/blimp_ui_context_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698