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

Unified Diff: content/common/view_messages.h

Issue 1619363002: Add compile time checks against longs being used in IPC structs on 32 bit Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one more per Dmitry Created 4 years, 11 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: content/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index b672f8397f4b23e555762f33f86eb161d56811c7..adb4669919d954e3178d52dc844d61fb90bae06a 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -1159,7 +1159,7 @@ IPC_MESSAGE_ROUTED2(ViewHostMsg_SetTooltipText,
// text in the document.
IPC_MESSAGE_ROUTED3(ViewHostMsg_SelectionChanged,
base::string16 /* text covers the selection range */,
- size_t /* the offset of the text in the document */,
+ uint32_t /* the offset of the text in the document */,
gfx::Range /* selection range in the document */)
// Notification that the selection bounds have changed.

Powered by Google App Engine
This is Rietveld 408576698