| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 void reportExecutionContextCreated(v8::Local<v8::Context>, const String& typ
e, const String& origin, const String& humanReadableName, const String& frameId)
override; | 129 void reportExecutionContextCreated(v8::Local<v8::Context>, const String& typ
e, const String& origin, const String& humanReadableName, const String& frameId)
override; |
| 130 void reportExecutionContextDestroyed(v8::Local<v8::Context>) override; | 130 void reportExecutionContextDestroyed(v8::Local<v8::Context>) override; |
| 131 PassOwnPtr<protocol::Runtime::ExceptionDetails> createExceptionDetails(v8::I
solate*, v8::Local<v8::Message>); | 131 PassOwnPtr<protocol::Runtime::ExceptionDetails> createExceptionDetails(v8::I
solate*, v8::Local<v8::Message>); |
| 132 | 132 |
| 133 Client* m_client; | 133 Client* m_client; |
| 134 protocol::DictionaryValue* m_state; | 134 protocol::DictionaryValue* m_state; |
| 135 protocol::Frontend::Runtime* m_frontend; | 135 protocol::Frontend::Runtime* m_frontend; |
| 136 OwnPtr<InjectedScriptManager> m_injectedScriptManager; | 136 OwnPtr<InjectedScriptManager> m_injectedScriptManager; |
| 137 V8DebuggerImpl* m_debugger; | 137 V8DebuggerImpl* m_debugger; |
| 138 bool m_enabled; | 138 bool m_enabled; |
| 139 HashMap<String, OwnPtr<v8::Global<v8::Script>>> m_compiledScripts; | 139 protocol::HashMap<String, OwnPtr<v8::Global<v8::Script>>> m_compiledScripts; |
| 140 }; | 140 }; |
| 141 | 141 |
| 142 } // namespace blink | 142 } // namespace blink |
| 143 | 143 |
| 144 #endif // V8RuntimeAgentImpl_h | 144 #endif // V8RuntimeAgentImpl_h |
| OLD | NEW |