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

Unified Diff: content/child/npapi/plugin_lib.h

Issue 1544273002: Switch to standard integer types in content/. (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 | « content/child/npapi/plugin_instance.cc ('k') | content/child/npapi/plugin_lib.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/npapi/plugin_lib.h
diff --git a/content/child/npapi/plugin_lib.h b/content/child/npapi/plugin_lib.h
index 382e281c4a2083b7611a5c78f948a82c778fab84..1228fb7f0d116808fe35b0bd06a8b3783fff017d 100644
--- a/content/child/npapi/plugin_lib.h
+++ b/content/child/npapi/plugin_lib.h
@@ -5,10 +5,12 @@
#ifndef CONTENT_CHILD_NPAPI_PLUGIN_LIB_H_
#define CONTENT_CHILD_NPAPI_PLUGIN_LIB_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/native_library.h"
#include "build/build_config.h"
@@ -74,7 +76,7 @@ class CONTENT_EXPORT PluginLib : public base::RefCounted<PluginLib> {
void NP_Shutdown(void);
// NPAPI method to clear locally stored data (LSO's or "Flash cookies").
- NPError NP_ClearSiteData(const char* site, uint64 flags, uint64 max_age);
+ NPError NP_ClearSiteData(const char* site, uint64_t flags, uint64_t max_age);
// NPAPI method to get a NULL-terminated list of all sites under which data
// is stored.
« no previous file with comments | « content/child/npapi/plugin_instance.cc ('k') | content/child/npapi/plugin_lib.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698