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

Unified Diff: content/child/npapi/webplugin_ime_win.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/webplugin_delegate_impl_win.cc ('k') | content/child/npapi/webplugin_ime_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/npapi/webplugin_ime_win.h
diff --git a/content/child/npapi/webplugin_ime_win.h b/content/child/npapi/webplugin_ime_win.h
index b24e75a5389d6e15e48a55700e045859cecc63b4..006705eb87a6572371bcd59f80199a147c5dbf52 100644
--- a/content/child/npapi/webplugin_ime_win.h
+++ b/content/child/npapi/webplugin_ime_win.h
@@ -5,10 +5,11 @@
#ifndef CONTENT_CHILD_NPAPI_WEBPLUGIN_IME_WIN_H_
#define CONTENT_CHILD_NPAPI_WEBPLUGIN_IME_WIN_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
-#include "base/basictypes.h"
#include "base/strings/string16.h"
#include "third_party/npapi/bindings/npapi.h"
#include "ui/gfx/geometry/rect.h"
@@ -149,10 +150,10 @@ class WebPluginIMEWin {
std::string composition_attributes_;
// The return value for GCS_COMPCLAUSE.
- std::vector<uint32> composition_clauses_;
+ std::vector<uint32_t> composition_clauses_;
// The return value for GCS_RESULTCLAUSE.
- uint32 result_clauses_[2];
+ uint32_t result_clauses_[2];
// The return value for GCS_CURSORPOS.
int cursor_position_;
« no previous file with comments | « content/child/npapi/webplugin_delegate_impl_win.cc ('k') | content/child/npapi/webplugin_ime_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698