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

Side by Side Diff: chrome/browser/metrics/leak_detector/leak_detector_controller.cc

Issue 2047163002: Move leak_detector_controller to its own directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update include paths Created 4 years, 6 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "chrome/browser/metrics/leak_detector_controller.h" 5 #include "chrome/browser/metrics/leak_detector/leak_detector_controller.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
11 #include "components/variations/variations_associated_data.h" 11 #include "components/variations/variations_associated_data.h"
12 #include "content/public/browser/browser_thread.h" 12 #include "content/public/browser/browser_thread.h"
13 13
14 namespace metrics { 14 namespace metrics {
15 15
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 } 114 }
115 } 115 }
116 116
117 void LeakDetectorController::GetLeakReports( 117 void LeakDetectorController::GetLeakReports(
118 std::vector<MemoryLeakReportProto>* reports) { 118 std::vector<MemoryLeakReportProto>* reports) {
119 DCHECK(thread_checker_.CalledOnValidThread()); 119 DCHECK(thread_checker_.CalledOnValidThread());
120 *reports = std::move(stored_reports_); 120 *reports = std::move(stored_reports_);
121 } 121 }
122 122
123 } // namespace metrics 123 } // namespace metrics
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698