| 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-2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2010-2011 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 void init() override; | 100 void init() override; |
| 101 void setFrontend(InspectorFrontend*) override; | 101 void setFrontend(InspectorFrontend*) override; |
| 102 void clearFrontend() override; | 102 void clearFrontend() override; |
| 103 void restore() override; | 103 void restore() override; |
| 104 | 104 |
| 105 V8DebuggerAgent* v8DebuggerAgent() const { return m_v8DebuggerAgent.get(); } | 105 V8DebuggerAgent* v8DebuggerAgent() const { return m_v8DebuggerAgent.get(); } |
| 106 | 106 |
| 107 protected: | 107 protected: |
| 108 InspectorDebuggerAgent(InjectedScriptManager*, V8Debugger*, int contextGroup
Id); | 108 InspectorDebuggerAgent(InjectedScriptManager*, V8Debugger*, int contextGroup
Id); |
| 109 | 109 |
| 110 OwnPtrWillBeMember<V8DebuggerAgent> m_v8DebuggerAgent; | 110 OwnPtr<V8DebuggerAgent> m_v8DebuggerAgent; |
| 111 OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker; | 111 OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker; |
| 112 }; | 112 }; |
| 113 | 113 |
| 114 } // namespace blink | 114 } // namespace blink |
| 115 | 115 |
| 116 | 116 |
| 117 #endif // !defined(InspectorDebuggerAgent_h) | 117 #endif // !defined(InspectorDebuggerAgent_h) |
| OLD | NEW |