| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Google Inc. All rights reserved. | 3 * Copyright (C) 2009 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 void unmonitorFunction(const String& scriptId, int lineNumber, int columnNum
ber); | 99 void unmonitorFunction(const String& scriptId, int lineNumber, int columnNum
ber); |
| 100 | 100 |
| 101 ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; } | 101 ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; } |
| 102 | 102 |
| 103 private: | 103 private: |
| 104 InjectedScriptHost(); | 104 InjectedScriptHost(); |
| 105 | 105 |
| 106 RawPtrWillBeMember<InspectorConsoleAgent> m_consoleAgent; | 106 RawPtrWillBeMember<InspectorConsoleAgent> m_consoleAgent; |
| 107 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent; | 107 RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent; |
| 108 OwnPtr<InspectCallback> m_inspectCallback; | 108 OwnPtr<InspectCallback> m_inspectCallback; |
| 109 ScriptDebugServer* m_scriptDebugServer; | 109 RawPtrWillBeMember<ScriptDebugServer> m_scriptDebugServer; |
| 110 Vector<OwnPtr<InspectableObject> > m_inspectedObjects; | 110 Vector<OwnPtr<InspectableObject> > m_inspectedObjects; |
| 111 OwnPtr<InspectableObject> m_defaultInspectableObject; | 111 OwnPtr<InspectableObject> m_defaultInspectableObject; |
| 112 }; | 112 }; |
| 113 | 113 |
| 114 } // namespace blink | 114 } // namespace blink |
| 115 | 115 |
| 116 #endif // InjectedScriptHost_h | 116 #endif // InjectedScriptHost_h |
| OLD | NEW |