OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 class DocumentParserTiming; | 43 class DocumentParserTiming; |
44 class DocumentTiming; | 44 class DocumentTiming; |
45 class LocalFrame; | 45 class LocalFrame; |
46 class PaintTiming; | 46 class PaintTiming; |
47 class ResourceLoadTiming; | 47 class ResourceLoadTiming; |
48 class ScriptState; | 48 class ScriptState; |
49 class ScriptValue; | 49 class ScriptValue; |
50 | 50 |
51 class CORE_EXPORT PerformanceTiming final : public GarbageCollectedFinalized<Per
formanceTiming>, public ScriptWrappable, public DOMWindowProperty { | 51 class CORE_EXPORT PerformanceTiming final : public GarbageCollectedFinalized<Per
formanceTiming>, public ScriptWrappable, public DOMWindowProperty { |
52 DEFINE_WRAPPERTYPEINFO(); | 52 DEFINE_WRAPPERTYPEINFO(); |
53 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PerformanceTiming); | 53 USING_GARBAGE_COLLECTED_MIXIN(PerformanceTiming); |
54 public: | 54 public: |
55 static PerformanceTiming* create(LocalFrame* frame) | 55 static PerformanceTiming* create(LocalFrame* frame) |
56 { | 56 { |
57 return new PerformanceTiming(frame); | 57 return new PerformanceTiming(frame); |
58 } | 58 } |
59 | 59 |
60 unsigned long long navigationStart() const; | 60 unsigned long long navigationStart() const; |
61 unsigned long long unloadEventStart() const; | 61 unsigned long long unloadEventStart() const; |
62 unsigned long long unloadEventEnd() const; | 62 unsigned long long unloadEventEnd() const; |
63 unsigned long long redirectStart() const; | 63 unsigned long long redirectStart() const; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 const DocumentParserTiming* documentParserTiming() const; | 111 const DocumentParserTiming* documentParserTiming() const; |
112 const PaintTiming* paintTiming() const; | 112 const PaintTiming* paintTiming() const; |
113 DocumentLoader* documentLoader() const; | 113 DocumentLoader* documentLoader() const; |
114 DocumentLoadTiming* documentLoadTiming() const; | 114 DocumentLoadTiming* documentLoadTiming() const; |
115 ResourceLoadTiming* resourceLoadTiming() const; | 115 ResourceLoadTiming* resourceLoadTiming() const; |
116 }; | 116 }; |
117 | 117 |
118 } // namespace blink | 118 } // namespace blink |
119 | 119 |
120 #endif // PerformanceTiming_h | 120 #endif // PerformanceTiming_h |
OLD | NEW |