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

Side by Side Diff: components/tracing/child_trace_message_filter.cc

Issue 1917053003: unique_ptr_migration: clean up references to scoped_ptr as of r389721 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_trace_message_filter.h" 5 #include "components/tracing/child_trace_message_filter.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "base/memory/ref_counted_memory.h" 9 #include "base/memory/ref_counted_memory.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "base/metrics/statistics_recorder.h" 10 #include "base/metrics/statistics_recorder.h"
12 #include "base/trace_event/trace_event.h" 11 #include "base/trace_event/trace_event.h"
13 #include "components/tracing/child_memory_dump_manager_delegate_impl.h" 12 #include "components/tracing/child_memory_dump_manager_delegate_impl.h"
14 #include "components/tracing/tracing_messages.h" 13 #include "components/tracing/tracing_messages.h"
15 #include "ipc/ipc_channel.h" 14 #include "ipc/ipc_channel.h"
16 15
17 using base::trace_event::TraceLog; 16 using base::trace_event::TraceLog;
18 17
19 namespace tracing { 18 namespace tracing {
20 19
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 } 290 }
292 } 291 }
293 292
294 void ChildTraceMessageFilter::OnClearUMACallback( 293 void ChildTraceMessageFilter::OnClearUMACallback(
295 const std::string& histogram_name) { 294 const std::string& histogram_name) {
296 histogram_last_changed_ = base::Time(); 295 histogram_last_changed_ = base::Time();
297 base::StatisticsRecorder::ClearCallback(histogram_name); 296 base::StatisticsRecorder::ClearCallback(histogram_name);
298 } 297 }
299 298
300 } // namespace tracing 299 } // namespace tracing
OLDNEW
« no previous file with comments | « components/safe_json/safe_json_parser_message_filter.cc ('k') | components/tracing/child_trace_message_filter_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698