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

Unified Diff: chrome/common/extensions/chrome_extension_messages.h

Issue 1548153002: Switch to standard integer types in chrome/. (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
Index: chrome/common/extensions/chrome_extension_messages.h
diff --git a/chrome/common/extensions/chrome_extension_messages.h b/chrome/common/extensions/chrome_extension_messages.h
index 637016c04c6b6f8fe886c6187b7f905a863270cb..af0ed700741a151df6dc614f47a3cd806dfa8b4d 100644
--- a/chrome/common/extensions/chrome_extension_messages.h
+++ b/chrome/common/extensions/chrome_extension_messages.h
@@ -8,6 +8,8 @@
//
// Multiply-included message file, hence no include guard.
+#include <stdint.h>
+
#include <string>
#include "base/strings/string16.h"
@@ -50,7 +52,7 @@ IPC_MESSAGE_ROUTED1(ExtensionMsg_InlineInstallDownloadProgress,
// Send to renderer once the installation mentioned on
// ExtensionHostMsg_InlineWebstoreInstall is complete.
IPC_MESSAGE_ROUTED4(ExtensionMsg_InlineWebstoreInstallResponse,
- int32 /* install id */,
+ int32_t /* install id */,
bool /* whether the install was successful */,
std::string /* error */,
extensions::webstore_install::Result /* result */)
@@ -119,8 +121,8 @@ IPC_MESSAGE_ROUTED2(ExtensionMsg_AccessibilityEvent,
// Sent by the renderer to implement chrome.webstore.install().
IPC_MESSAGE_ROUTED5(ExtensionHostMsg_InlineWebstoreInstall,
- int32 /* install id */,
- int32 /* return route id */,
+ int32_t /* install id */,
+ int32_t /* return route id */,
std::string /* Web Store item ID */,
GURL /* requestor URL */,
int /* listeners_mask */)
« no previous file with comments | « chrome/common/extensions/api/url_handlers/url_handlers_parser.h ('k') | chrome/common/extensions/chrome_extensions_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698