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

Unified Diff: ipc/message_filter.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.cc
diff --git a/ipc/message_filter.cc b/ipc/message_filter.cc
index ffde0f0d0f34fcd1157104acfeef88a7a1f5e9ea..b9436e234ac9333b29840fe7ae84d1b49a6da10a 100644
--- a/ipc/message_filter.cc
+++ b/ipc/message_filter.cc
@@ -15,7 +15,7 @@ void MessageFilter::OnFilterAdded(Sender* sender) {}
void MessageFilter::OnFilterRemoved() {}
-void MessageFilter::OnChannelConnected(int32 peer_pid) {}
+void MessageFilter::OnChannelConnected(int32_t peer_pid) {}
void MessageFilter::OnChannelError() {}
@@ -26,7 +26,7 @@ bool MessageFilter::OnMessageReceived(const Message& message) {
}
bool MessageFilter::GetSupportedMessageClasses(
- std::vector<uint32>* /*supported_message_classes*/) const {
+ std::vector<uint32_t>* /*supported_message_classes*/) const {
return false;
}
« ipc/message_filter.h ('K') | « ipc/message_filter.h ('k') | ipc/message_filter_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698