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

Side by Side Diff: components/tracing/child_memory_dump_manager_delegate_impl.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 4 years, 12 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/tracing/child_memory_dump_manager_delegate_impl.h" 5 #include "components/tracing/child_memory_dump_manager_delegate_impl.h"
6 6
7 #include "base/single_thread_task_runner.h" 7 #include "base/single_thread_task_runner.h"
8 #include "components/tracing/child_trace_message_filter.h" 8 #include "components/tracing/child_trace_message_filter.h"
9 9
10 namespace tracing { 10 namespace tracing {
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 // The ChildTraceMessageFilter could have been destroyed while hopping on the 84 // The ChildTraceMessageFilter could have been destroyed while hopping on the
85 // right thread. If this is the case, bail out. 85 // right thread. If this is the case, bail out.
86 if (!ctmf_) 86 if (!ctmf_)
87 return AbortDumpRequest(args, callback); 87 return AbortDumpRequest(args, callback);
88 88
89 // Send the request up to the browser process' MessageDumpmanager. 89 // Send the request up to the browser process' MessageDumpmanager.
90 ctmf_->SendGlobalMemoryDumpRequest(args, callback); 90 ctmf_->SendGlobalMemoryDumpRequest(args, callback);
91 } 91 }
92 92
93 uint64 ChildMemoryDumpManagerDelegateImpl::GetTracingProcessId() const { 93 uint64_t ChildMemoryDumpManagerDelegateImpl::GetTracingProcessId() const {
94 return tracing_process_id_; 94 return tracing_process_id_;
95 } 95 }
96 96
97 } // namespace tracing 97 } // namespace tracing
OLDNEW
« no previous file with comments | « components/tracing/child_memory_dump_manager_delegate_impl.h ('k') | components/tracing/child_trace_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698