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

Unified Diff: ipc/message_filter_router.cc

Issue 1322253003: ipc: Convert int types from basictypes.h to the ones from stdint.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months 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: ipc/message_filter_router.cc
diff --git a/ipc/message_filter_router.cc b/ipc/message_filter_router.cc
index 81e40289147be468578c3574cbc79054993f4e51..35209b091811554b0711b207cc4c70209ba807f7 100644
--- a/ipc/message_filter_router.cc
+++ b/ipc/message_filter_router.cc
@@ -4,6 +4,8 @@
#include "ipc/message_filter_router.h"
+#include <stdint.h>
+
#include "ipc/ipc_message_macros.h"
#include "ipc/ipc_message_utils.h"
#include "ipc/message_filter.h"
@@ -45,7 +47,7 @@ MessageFilterRouter::~MessageFilterRouter() {}
void MessageFilterRouter::AddFilter(MessageFilter* filter) {
// Determine if the filter should be applied to all messages, or only
// messages of a certain class.
- std::vector<uint32> supported_message_classes;
+ std::vector<uint32_t> supported_message_classes;
if (filter->GetSupportedMessageClasses(&supported_message_classes)) {
DCHECK(!supported_message_classes.empty());
for (size_t i = 0; i < supported_message_classes.size(); ++i) {

Powered by Google App Engine
This is Rietveld 408576698