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

Side by Side Diff: Source/core/timing/PerformanceEntry.h

Issue 940843003: InlinedVisitor: Migrate timing to use inlined tracing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/timing/Performance.cpp ('k') | Source/core/timing/PerformanceMark.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2012 Intel Inc. All rights reserved. 3 * Copyright (C) 2012 Intel Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 virtual bool isResource() { return false; } 53 virtual bool isResource() { return false; }
54 virtual bool isMark() { return false; } 54 virtual bool isMark() { return false; }
55 virtual bool isMeasure() { return false; } 55 virtual bool isMeasure() { return false; }
56 56
57 static bool startTimeCompareLessThan(PassRefPtrWillBeRawPtr<PerformanceEntry > a, PassRefPtrWillBeRawPtr<PerformanceEntry> b) 57 static bool startTimeCompareLessThan(PassRefPtrWillBeRawPtr<PerformanceEntry > a, PassRefPtrWillBeRawPtr<PerformanceEntry> b)
58 { 58 {
59 return a->startTime() < b->startTime(); 59 return a->startTime() < b->startTime();
60 } 60 }
61 61
62 virtual void trace(Visitor*) { } 62 DEFINE_INLINE_VIRTUAL_TRACE() { }
63 63
64 protected: 64 protected:
65 PerformanceEntry(const String& name, const String& entryType, double startTi me, double finishTime); 65 PerformanceEntry(const String& name, const String& entryType, double startTi me, double finishTime);
66 66
67 private: 67 private:
68 const String m_name; 68 const String m_name;
69 const String m_entryType; 69 const String m_entryType;
70 const double m_startTime; 70 const double m_startTime;
71 const double m_duration; 71 const double m_duration;
72 }; 72 };
73 73
74 } // namespace blink 74 } // namespace blink
75 75
76 #endif // PerformanceEntry_h 76 #endif // PerformanceEntry_h
OLDNEW
« no previous file with comments | « Source/core/timing/Performance.cpp ('k') | Source/core/timing/PerformanceMark.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698