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

Unified Diff: third_party/WebKit/public/platform/WebFrameTimingEvent.h

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/public/blink_headers.gypi ('k') | third_party/WebKit/public/platform/WebLayer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebFrameTimingEvent.h
diff --git a/third_party/WebKit/public/platform/WebFrameTimingEvent.h b/third_party/WebKit/public/platform/WebFrameTimingEvent.h
deleted file mode 100644
index 341ab03c82c9f5e9a998288e3c00158c21e8e4a3..0000000000000000000000000000000000000000
--- a/third_party/WebKit/public/platform/WebFrameTimingEvent.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WebFrameTimingEvent_h
-#define WebFrameTimingEvent_h
-
-namespace blink {
-
-// A struct to pass PerformanceRenderEvent or PerformanceCompositeEvent info
-// to Blink.
-struct WebFrameTimingEvent {
- WebFrameTimingEvent(unsigned sourceFrame, double startTime, double finishTime)
- : sourceFrame(sourceFrame)
- , startTime(startTime)
- , finishTime(finishTime)
- {
- }
-
- WebFrameTimingEvent(unsigned sourceFrame, double startTime)
- : sourceFrame(sourceFrame)
- , startTime(startTime)
- {
- }
-
- WebFrameTimingEvent() { }
-
- WebFrameTimingEvent& operator=(const WebFrameTimingEvent& rhs)
- {
- sourceFrame = rhs.sourceFrame;
- startTime = rhs.startTime;
- finishTime = rhs.finishTime;
- return *this;
- }
- unsigned sourceFrame;
- double startTime;
- double finishTime;
-};
-
-} // namespace blink
-
-#endif
« no previous file with comments | « third_party/WebKit/public/blink_headers.gypi ('k') | third_party/WebKit/public/platform/WebLayer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698