| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 #include "core/CoreExport.h" | 35 #include "core/CoreExport.h" |
| 36 #include "core/frame/DOMWindowProperty.h" | 36 #include "core/frame/DOMWindowProperty.h" |
| 37 #include "core/timing/MemoryInfo.h" | 37 #include "core/timing/MemoryInfo.h" |
| 38 #include "core/timing/PerformanceBase.h" | 38 #include "core/timing/PerformanceBase.h" |
| 39 #include "core/timing/PerformanceNavigation.h" | 39 #include "core/timing/PerformanceNavigation.h" |
| 40 #include "core/timing/PerformanceTiming.h" | 40 #include "core/timing/PerformanceTiming.h" |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class InspectorWebPerfAgent; | |
| 45 class ScriptState; | 44 class ScriptState; |
| 46 class ScriptValue; | 45 class ScriptValue; |
| 47 | 46 |
| 48 class CORE_EXPORT Performance final : public PerformanceBase, | 47 class CORE_EXPORT Performance final : public PerformanceBase, |
| 49 public DOMWindowProperty { | 48 public DOMWindowProperty { |
| 50 DEFINE_WRAPPERTYPEINFO(); | 49 DEFINE_WRAPPERTYPEINFO(); |
| 51 USING_GARBAGE_COLLECTED_MIXIN(Performance); | 50 USING_GARBAGE_COLLECTED_MIXIN(Performance); |
| 52 friend class PerformanceTest; | 51 friend class PerformanceTest; |
| 53 | 52 |
| 54 public: | 53 public: |
| (...skipping 20 matching lines...) Expand all Loading... |
| 75 | 74 |
| 76 mutable Member<PerformanceNavigation> m_navigation; | 75 mutable Member<PerformanceNavigation> m_navigation; |
| 77 mutable Member<PerformanceTiming> m_timing; | 76 mutable Member<PerformanceTiming> m_timing; |
| 78 | 77 |
| 79 bool m_observingLongTasks; | 78 bool m_observingLongTasks; |
| 80 }; | 79 }; |
| 81 | 80 |
| 82 } // namespace blink | 81 } // namespace blink |
| 83 | 82 |
| 84 #endif // Performance_h | 83 #endif // Performance_h |
| OLD | NEW |