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

Unified Diff: ipc/ipc_message.h

Issue 1331673002: ipc: Convert k(u)int*max types from basictypes.h to std::numeric_limits variants. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix win? 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
« no previous file with comments | « ipc/ipc_fuzzing_tests.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_message.h
diff --git a/ipc/ipc_message.h b/ipc/ipc_message.h
index cc7ebb31a988d77cd162f3d55a1f36020f36c6cf..d60c76e989d0ecd71c2c43b207e6ab999f124eb7 100644
--- a/ipc/ipc_message.h
+++ b/ipc/ipc_message.h
@@ -9,7 +9,6 @@
#include <string>
-#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "base/pickle.h"
#include "base/trace_event/trace_event.h"
@@ -279,7 +278,7 @@ enum SpecialRoutingIDs {
MSG_ROUTING_NONE = -2,
// indicates a general message not sent to a particular tab.
- MSG_ROUTING_CONTROL = kint32max,
+ MSG_ROUTING_CONTROL = INT32_MAX,
};
#define IPC_REPLY_ID 0xFFFFFFF0 // Special message id for replies
« no previous file with comments | « ipc/ipc_fuzzing_tests.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698