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

Unified Diff: ui/accelerated_widget_mac/surface_handle_types.h

Issue 1550483002: Switch to standard integer types in ui/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-ui-events
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 | « ui/accelerated_widget_mac/io_surface_context.h ('k') | ui/accelerated_widget_mac/surface_handle_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accelerated_widget_mac/surface_handle_types.h
diff --git a/ui/accelerated_widget_mac/surface_handle_types.h b/ui/accelerated_widget_mac/surface_handle_types.h
index 6a544e3190460ac6296dfe5999a6c3460a9a3b3f..23723e800beef79033c855f2a37ac22b5232e15a 100644
--- a/ui/accelerated_widget_mac/surface_handle_types.h
+++ b/ui/accelerated_widget_mac/surface_handle_types.h
@@ -7,8 +7,8 @@
#include <IOSurface/IOSurface.h>
#include <OpenGL/CGLIOSurface.h>
+#include <stdint.h>
-#include "base/basictypes.h"
#include "ui/accelerated_widget_mac/accelerated_widget_mac_export.h"
#include "ui/base/cocoa/remote_layer_api.h"
@@ -24,19 +24,19 @@ enum SurfaceHandleType {
};
ACCELERATED_WIDGET_MAC_EXPORT
-SurfaceHandleType GetSurfaceHandleType(uint64 surface_handle);
+SurfaceHandleType GetSurfaceHandleType(uint64_t surface_handle);
ACCELERATED_WIDGET_MAC_EXPORT
-CAContextID CAContextIDFromSurfaceHandle(uint64 surface_handle);
+CAContextID CAContextIDFromSurfaceHandle(uint64_t surface_handle);
ACCELERATED_WIDGET_MAC_EXPORT
-IOSurfaceID IOSurfaceIDFromSurfaceHandle(uint64 surface_handle);
+IOSurfaceID IOSurfaceIDFromSurfaceHandle(uint64_t surface_handle);
ACCELERATED_WIDGET_MAC_EXPORT
-uint64 SurfaceHandleFromIOSurfaceID(IOSurfaceID io_surface_id);
+uint64_t SurfaceHandleFromIOSurfaceID(IOSurfaceID io_surface_id);
ACCELERATED_WIDGET_MAC_EXPORT
-uint64 SurfaceHandleFromCAContextID(CAContextID ca_context_id);
+uint64_t SurfaceHandleFromCAContextID(CAContextID ca_context_id);
} // namespace ui
« no previous file with comments | « ui/accelerated_widget_mac/io_surface_context.h ('k') | ui/accelerated_widget_mac/surface_handle_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698