| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2015 Google Inc. All rights reserved. | 2 * Copyright (C) 2015 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2015 Intel Inc. All rights reserved. | 3 * Copyright (C) 2015 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 | 51 |
| 52 unsigned sourceFrame() const; | 52 unsigned sourceFrame() const; |
| 53 | 53 |
| 54 DECLARE_VIRTUAL_TRACE(); | 54 DECLARE_VIRTUAL_TRACE(); |
| 55 | 55 |
| 56 private: | 56 private: |
| 57 PerformanceCompositeTiming(Document* requestingDocument, unsigned sourceFram
e, double startTime); | 57 PerformanceCompositeTiming(Document* requestingDocument, unsigned sourceFram
e, double startTime); |
| 58 ~PerformanceCompositeTiming() override; | 58 ~PerformanceCompositeTiming() override; |
| 59 | 59 |
| 60 unsigned m_sourceFrame; | 60 unsigned m_sourceFrame; |
| 61 RefPtrWillBeMember<Document> m_requestingDocument; | 61 Member<Document> m_requestingDocument; |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 } // namespace blink | 64 } // namespace blink |
| 65 | 65 |
| 66 #endif // PerformanceCompositeTiming_h | 66 #endif // PerformanceCompositeTiming_h |
| OLD | NEW |