| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Google Inc. All rights reserved. | 3 * Copyright (C) 2010 Google 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 | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. 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 26 matching lines...) Expand all Loading... |
| 37 #include "wtf/Noncopyable.h" | 37 #include "wtf/Noncopyable.h" |
| 38 #include "wtf/PassOwnPtr.h" | 38 #include "wtf/PassOwnPtr.h" |
| 39 #include "wtf/text/WTFString.h" | 39 #include "wtf/text/WTFString.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class ExecutionContext; | 43 class ExecutionContext; |
| 44 class InjectedScriptManager; | 44 class InjectedScriptManager; |
| 45 class InspectorFrontend; | 45 class InspectorFrontend; |
| 46 class InspectorOverlay; | 46 class InspectorOverlay; |
| 47 class InstrumentingAgents; | |
| 48 class ScriptState; | |
| 49 class ScriptCallStack; | |
| 50 class ScriptProfile; | |
| 51 | 47 |
| 52 | 48 |
| 53 typedef String ErrorString; | 49 typedef String ErrorString; |
| 54 | 50 |
| 55 class InspectorProfilerAgent final : public InspectorBaseAgent<InspectorProfiler
Agent>, public InspectorBackendDispatcher::ProfilerCommandHandler { | 51 class InspectorProfilerAgent final : public InspectorBaseAgent<InspectorProfiler
Agent>, public InspectorBackendDispatcher::ProfilerCommandHandler { |
| 56 WTF_MAKE_NONCOPYABLE(InspectorProfilerAgent); | 52 WTF_MAKE_NONCOPYABLE(InspectorProfilerAgent); |
| 57 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; | 53 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; |
| 58 public: | 54 public: |
| 59 static PassOwnPtrWillBeRawPtr<InspectorProfilerAgent> create(InjectedScriptM
anager*, InspectorOverlay*); | 55 static PassOwnPtrWillBeRawPtr<InspectorProfilerAgent> create(InjectedScriptM
anager*, InspectorOverlay*); |
| 60 virtual ~InspectorProfilerAgent(); | 56 virtual ~InspectorProfilerAgent(); |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 InspectorOverlay* m_overlay; | 94 InspectorOverlay* m_overlay; |
| 99 | 95 |
| 100 void idleStarted(); | 96 void idleStarted(); |
| 101 void idleFinished(); | 97 void idleFinished(); |
| 102 }; | 98 }; |
| 103 | 99 |
| 104 } // namespace blink | 100 } // namespace blink |
| 105 | 101 |
| 106 | 102 |
| 107 #endif // !defined(InspectorProfilerAgent_h) | 103 #endif // !defined(InspectorProfilerAgent_h) |
| OLD | NEW |