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

Unified Diff: components/tracing/child_trace_message_filter.cc

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: components/tracing/child_trace_message_filter.cc
diff --git a/components/tracing/child_trace_message_filter.cc b/components/tracing/child_trace_message_filter.cc
index 0694a174887b725c2240ec076636a73ae80f75f6..f0d76edb233ece40b311b5e4e89ced8ed5f93ad5 100644
--- a/components/tracing/child_trace_message_filter.cc
+++ b/components/tracing/child_trace_message_filter.cc
@@ -73,7 +73,7 @@ ChildTraceMessageFilter::~ChildTraceMessageFilter() {}
void ChildTraceMessageFilter::OnBeginTracing(
const std::string& trace_config_str,
base::TimeTicks browser_time,
- uint64 tracing_process_id) {
+ uint64_t tracing_process_id) {
#if defined(__native_client__)
// NaCl and system times are offset by a bit, so subtract some time from
// the captured timestamps. The value might be off by a bit due to messaging
@@ -200,7 +200,7 @@ void ChildTraceMessageFilter::OnProcessMemoryDumpRequest(
base::Bind(&ChildTraceMessageFilter::OnProcessMemoryDumpDone, this));
}
-void ChildTraceMessageFilter::OnProcessMemoryDumpDone(uint64 dump_guid,
+void ChildTraceMessageFilter::OnProcessMemoryDumpDone(uint64_t dump_guid,
bool success) {
sender_->Send(
new TracingHostMsg_ProcessMemoryDumpResponse(dump_guid, success));
@@ -229,7 +229,7 @@ void ChildTraceMessageFilter::SendGlobalMemoryDumpRequest(
// Sent by the Browser's MemoryDumpManager in response of a dump request
// initiated by this child process.
-void ChildTraceMessageFilter::OnGlobalMemoryDumpResponse(uint64 dump_guid,
+void ChildTraceMessageFilter::OnGlobalMemoryDumpResponse(uint64_t dump_guid,
bool success) {
DCHECK_NE(0U, pending_memory_dump_guid_);
pending_memory_dump_guid_ = 0;
« no previous file with comments | « components/tracing/child_trace_message_filter.h ('k') | components/tracing/child_trace_message_filter_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698