| OLD | NEW |
| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 class PerformanceEntry : public RefCountedWillBeGarbageCollectedFinalized<Perfor
manceEntry>, public ScriptWrappable { | 43 class PerformanceEntry : public RefCountedWillBeGarbageCollectedFinalized<Perfor
manceEntry>, public ScriptWrappable { |
| 44 public: | 44 public: |
| 45 virtual ~PerformanceEntry(); | 45 virtual ~PerformanceEntry(); |
| 46 | 46 |
| 47 String name() const; | 47 String name() const; |
| 48 String entryType() const; | 48 String entryType() const; |
| 49 double startTime() const; | 49 double startTime() const; |
| 50 double duration() const; | 50 double duration() const; |
| 51 | 51 |
| 52 virtual bool isResource() { return false; } | 52 virtual bool isResource() { return false; } |
| 53 virtual bool isDraw() { return false; } |
| 53 virtual bool isMark() { return false; } | 54 virtual bool isMark() { return false; } |
| 54 virtual bool isMeasure() { return false; } | 55 virtual bool isMeasure() { return false; } |
| 55 | 56 |
| 56 static bool startTimeCompareLessThan(PassRefPtrWillBeRawPtr<PerformanceEntry
> a, PassRefPtrWillBeRawPtr<PerformanceEntry> b) | 57 static bool startTimeCompareLessThan(PassRefPtrWillBeRawPtr<PerformanceEntry
> a, PassRefPtrWillBeRawPtr<PerformanceEntry> b) |
| 57 { | 58 { |
| 58 return a->startTime() < b->startTime(); | 59 return a->startTime() < b->startTime(); |
| 59 } | 60 } |
| 60 | 61 |
| 61 virtual void trace(Visitor*) { } | 62 virtual void trace(Visitor*) { } |
| 62 | 63 |
| 63 protected: | 64 protected: |
| 64 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); |
| 65 | 66 |
| 66 private: | 67 private: |
| 67 const String m_name; | 68 const String m_name; |
| 68 const String m_entryType; | 69 const String m_entryType; |
| 69 const double m_startTime; | 70 const double m_startTime; |
| 70 const double m_duration; | 71 const double m_duration; |
| 71 }; | 72 }; |
| 72 | 73 |
| 73 } | 74 } |
| 74 | 75 |
| 75 #endif // !defined(PerformanceEntry_h) | 76 #endif // !defined(PerformanceEntry_h) |
| OLD | NEW |