| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 void monitorFunction(const String& scriptId, int lineNumber, int columnNumbe
r, const String& functionName); | 90 void monitorFunction(const String& scriptId, int lineNumber, int columnNumbe
r, const String& functionName); |
| 91 void unmonitorFunction(const String& scriptId, int lineNumber, int columnNum
ber); | 91 void unmonitorFunction(const String& scriptId, int lineNumber, int columnNum
ber); |
| 92 | 92 |
| 93 ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; } | 93 ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; } |
| 94 | 94 |
| 95 private: | 95 private: |
| 96 InjectedScriptHost(); | 96 InjectedScriptHost(); |
| 97 | 97 |
| 98 RawPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; | 98 RawPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; |
| 99 ScriptDebugServer* m_scriptDebugServer; | 99 ScriptDebugServer* m_scriptDebugServer; |
| 100 Vector<OwnPtr<InspectableObject> > m_inspectedObjects; | 100 Vector<OwnPtr<InspectableObject>> m_inspectedObjects; |
| 101 OwnPtr<InspectableObject> m_defaultInspectableObject; | 101 OwnPtr<InspectableObject> m_defaultInspectableObject; |
| 102 }; | 102 }; |
| 103 | 103 |
| 104 } // namespace blink | 104 } // namespace blink |
| 105 | 105 |
| 106 #endif // InjectedScriptHost_h | 106 #endif // InjectedScriptHost_h |
| OLD | NEW |