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

Side by Side Diff: cc/debug/frame_timing_request.cc

Issue 1897123002: Remove current implementation of frame timing events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 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
« no previous file with comments | « cc/debug/frame_timing_request.h ('k') | cc/debug/frame_timing_tracker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include <stdint.h>
6
7 #include "cc/debug/frame_timing_request.h"
8
9 namespace cc {
10
11 FrameTimingRequest::FrameTimingRequest() : id_(0) {
12 }
13
14 FrameTimingRequest::FrameTimingRequest(int64_t request_id,
15 const gfx::Rect& rect)
16 : id_(request_id), rect_(rect) {
17 }
18
19 } // namespace cc
OLDNEW
« no previous file with comments | « cc/debug/frame_timing_request.h ('k') | cc/debug/frame_timing_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698