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

Side by Side Diff: chrome/browser/metrics/first_web_contents_profiler.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #if !defined(OS_ANDROID) 5 #if !defined(OS_ANDROID)
6 6
7 #include "chrome/browser/metrics/first_web_contents_profiler.h" 7 #include "chrome/browser/metrics/first_web_contents_profiler.h"
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/location.h" 11 #include "base/location.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/metrics/histogram_macros.h" 13 #include "base/metrics/histogram_macros.h"
14 #include "base/time/time.h" 14 #include "base/time/time.h"
15 #include "build/build_config.h"
15 #include "chrome/browser/ui/browser.h" 16 #include "chrome/browser/ui/browser.h"
16 #include "chrome/browser/ui/browser_iterator.h" 17 #include "chrome/browser/ui/browser_iterator.h"
17 #include "chrome/browser/ui/tabs/tab_strip_model.h" 18 #include "chrome/browser/ui/tabs/tab_strip_model.h"
18 #include "components/metrics/profiler/tracking_synchronizer.h" 19 #include "components/metrics/profiler/tracking_synchronizer.h"
19 #include "components/metrics/proto/profiler_event.pb.h" 20 #include "components/metrics/proto/profiler_event.pb.h"
20 #include "components/startup_metric_utils/browser/startup_metric_utils.h" 21 #include "components/startup_metric_utils/browser/startup_metric_utils.h"
21 #include "content/public/browser/navigation_handle.h" 22 #include "content/public/browser/navigation_handle.h"
22 23
23 // static 24 // static
24 void FirstWebContentsProfiler::Start() { 25 void FirstWebContentsProfiler::Start() {
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 } 156 }
156 if (!collected_load_metric_) { 157 if (!collected_load_metric_) {
157 UMA_HISTOGRAM_ENUMERATION("Startup.FirstWebContents.FinishReason_NoLoad", 158 UMA_HISTOGRAM_ENUMERATION("Startup.FirstWebContents.FinishReason_NoLoad",
158 finish_reason, FinishReason::ENUM_MAX); 159 finish_reason, FinishReason::ENUM_MAX);
159 } 160 }
160 161
161 delete this; 162 delete this;
162 } 163 }
163 164
164 #endif // !defined(OS_ANDROID) 165 #endif // !defined(OS_ANDROID)
OLDNEW
« no previous file with comments | « chrome/browser/metrics/first_web_contents_profiler.h ('k') | chrome/browser/metrics/metrics_memory_details.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698