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

Unified Diff: ppapi/proxy/proxy_object_var.h

Issue 1548813002: Switch to standard integer types in ppapi/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes 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 | « ppapi/proxy/proxy_module.h ('k') | ppapi/proxy/proxy_object_var.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/proxy_object_var.h
diff --git a/ppapi/proxy/proxy_object_var.h b/ppapi/proxy/proxy_object_var.h
index a3ba1533944f730b7717a156f4688e787a0c4d6b..0690129dd8e41d41fff9b4550b190cd851c1b6d4 100644
--- a/ppapi/proxy/proxy_object_var.h
+++ b/ppapi/proxy/proxy_object_var.h
@@ -5,7 +5,10 @@
#ifndef PPAPI_PROXY_PROXY_OBJECT_VAR_H_
#define PPAPI_PROXY_PROXY_OBJECT_VAR_H_
+#include <stdint.h>
+
#include "base/compiler_specific.h"
+#include "base/macros.h"
#include "ppapi/proxy/ppapi_proxy_export.h"
#include "ppapi/shared_impl/var.h"
@@ -20,8 +23,7 @@ class PluginDispatcher;
// integrating this with PP_Var creation.
class PPAPI_PROXY_EXPORT ProxyObjectVar : public Var {
public:
- ProxyObjectVar(proxy::PluginDispatcher* dispatcher,
- int32 host_var_id);
+ ProxyObjectVar(proxy::PluginDispatcher* dispatcher, int32_t host_var_id);
~ProxyObjectVar() override;
@@ -30,20 +32,20 @@ class PPAPI_PROXY_EXPORT ProxyObjectVar : public Var {
PP_VarType GetType() const override;
proxy::PluginDispatcher* dispatcher() const { return dispatcher_; }
- int32 host_var_id() const { return host_var_id_; }
+ int32_t host_var_id() const { return host_var_id_; }
void* user_data() const { return user_data_; }
void set_user_data(void* ud) { user_data_ = ud; }
// Expose AssignVarID on Var so the PluginResourceTracker can call us when
// it's creating IDs.
- void AssignVarID(int32 id);
+ void AssignVarID(int32_t id);
void clear_dispatcher() { dispatcher_ = NULL; }
private:
proxy::PluginDispatcher* dispatcher_;
- int32 host_var_id_;
+ int32_t host_var_id_;
// When this object is created as representing a var implemented by the
// plugin, this stores the user data so that we can look it up later. See
« no previous file with comments | « ppapi/proxy/proxy_module.h ('k') | ppapi/proxy/proxy_object_var.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698