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

Side by Side Diff: components/metrics/profiler/tracking_synchronizer_observer.cc

Issue 1021053003: Delivering the FIRST_NONEMPTY_PAINT phase changing event to base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@phase_splitting
Patch Set: Next batch if isherman@ comments. Created 5 years, 8 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
(Empty)
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/metrics/profiler/tracking_synchronizer_observer.h"
6
7 namespace metrics {
8
9 //------------------------------------------------------------------------------
10 // ProfilerDataAttributes methods and members.
11
12 ProfilerDataAttributes::ProfilerDataAttributes(
13 int profiling_phase,
14 base::ProcessId process_id,
15 content::ProcessType process_type,
16 base::TimeTicks phase_start,
17 base::TimeTicks phase_finish)
18 : profiling_phase(profiling_phase),
19 process_id(process_id),
20 process_type(process_type),
21 phase_start(phase_start),
22 phase_finish(phase_finish) {
23 }
24
25 } // namespace metrics
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698