| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 class DocumentLoader; | 42 class DocumentLoader; |
| 43 class DocumentTiming; | 43 class DocumentTiming; |
| 44 class LocalFrame; | 44 class LocalFrame; |
| 45 class PaintTiming; | 45 class PaintTiming; |
| 46 class ResourceLoadTiming; | 46 class ResourceLoadTiming; |
| 47 class ScriptState; | 47 class ScriptState; |
| 48 class ScriptValue; | 48 class ScriptValue; |
| 49 | 49 |
| 50 class CORE_EXPORT PerformanceTiming final : public GarbageCollectedFinalized<Per
formanceTiming>, public ScriptWrappable, public DOMWindowProperty { | 50 class CORE_EXPORT PerformanceTiming final : public GarbageCollectedFinalized<Per
formanceTiming>, public ScriptWrappable, public DOMWindowProperty { |
| 51 DEFINE_WRAPPERTYPEINFO(); | 51 DEFINE_WRAPPERTYPEINFO(); |
| 52 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PerformanceTiming); | 52 USING_GARBAGE_COLLECTED_MIXIN(PerformanceTiming); |
| 53 public: | 53 public: |
| 54 static PerformanceTiming* create(LocalFrame* frame) | 54 static PerformanceTiming* create(LocalFrame* frame) |
| 55 { | 55 { |
| 56 return new PerformanceTiming(frame); | 56 return new PerformanceTiming(frame); |
| 57 } | 57 } |
| 58 | 58 |
| 59 unsigned long long navigationStart() const; | 59 unsigned long long navigationStart() const; |
| 60 unsigned long long unloadEventStart() const; | 60 unsigned long long unloadEventStart() const; |
| 61 unsigned long long unloadEventEnd() const; | 61 unsigned long long unloadEventEnd() const; |
| 62 unsigned long long redirectStart() const; | 62 unsigned long long redirectStart() const; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 const DocumentTiming* documentTiming() const; | 105 const DocumentTiming* documentTiming() const; |
| 106 const PaintTiming* paintTiming() const; | 106 const PaintTiming* paintTiming() const; |
| 107 DocumentLoader* documentLoader() const; | 107 DocumentLoader* documentLoader() const; |
| 108 DocumentLoadTiming* documentLoadTiming() const; | 108 DocumentLoadTiming* documentLoadTiming() const; |
| 109 ResourceLoadTiming* resourceLoadTiming() const; | 109 ResourceLoadTiming* resourceLoadTiming() const; |
| 110 }; | 110 }; |
| 111 | 111 |
| 112 } // namespace blink | 112 } // namespace blink |
| 113 | 113 |
| 114 #endif // PerformanceTiming_h | 114 #endif // PerformanceTiming_h |
| OLD | NEW |