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

Unified Diff: extensions/common/stack_frame.cc

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: extensions/common/stack_frame.cc
diff --git a/extensions/common/stack_frame.cc b/extensions/common/stack_frame.cc
index 0286c5b245cf29878f066664b5e7e92aa3226532..8d7046e566e70a46f38f06e3267209746a779538 100644
--- a/extensions/common/stack_frame.cc
+++ b/extensions/common/stack_frame.cc
@@ -25,8 +25,8 @@ StackFrame::StackFrame(const StackFrame& frame)
function(frame.function) {
}
-StackFrame::StackFrame(size_t line_number,
- size_t column_number,
+StackFrame::StackFrame(uint32_t line_number,
+ uint32_t column_number,
const base::string16& source,
const base::string16& function)
: line_number(line_number),

Powered by Google App Engine
This is Rietveld 408576698