| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 virtual void callFunctionOn(ErrorString*, | 69 virtual void callFunctionOn(ErrorString*, |
| 70 const String& objectId, | 70 const String& objectId, |
| 71 const String& expression, | 71 const String& expression, |
| 72 const RefPtr<JSONArray>* optionalArguments, | 72 const RefPtr<JSONArray>* optionalArguments, |
| 73 const bool* doNotPauseOnExceptionsAndMuteConsole, | 73 const bool* doNotPauseOnExceptionsAndMuteConsole, |
| 74 const bool* returnByValue, | 74 const bool* returnByValue, |
| 75 const bool* generatePreview, | 75 const bool* generatePreview, |
| 76 RefPtr<TypeBuilder::Runtime::RemoteObject>& result, | 76 RefPtr<TypeBuilder::Runtime::RemoteObject>& result, |
| 77 TypeBuilder::OptOutput<bool>* wasThrown) override final; | 77 TypeBuilder::OptOutput<bool>* wasThrown) override final; |
| 78 virtual void releaseObject(ErrorString*, const String& objectId) override fi
nal; | 78 virtual void releaseObject(ErrorString*, const String& objectId) override fi
nal; |
| 79 virtual void getProperties(ErrorString*, const String& objectId, const bool*
ownProperties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<Ty
peBuilder::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<Typ
eBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties) override f
inal; | 79 virtual void getProperties(ErrorString*, const String& objectId, const bool*
ownProperties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<Ty
peBuilder::Runtime::PropertyDescriptor>>& result, RefPtr<TypeBuilder::Array<Type
Builder::Runtime::InternalPropertyDescriptor>>& internalProperties) override fin
al; |
| 80 virtual void releaseObjectGroup(ErrorString*, const String& objectGroup) ove
rride final; | 80 virtual void releaseObjectGroup(ErrorString*, const String& objectGroup) ove
rride final; |
| 81 virtual void run(ErrorString*) override; | 81 virtual void run(ErrorString*) override; |
| 82 virtual void isRunRequired(ErrorString*, bool* out_result) override; | 82 virtual void isRunRequired(ErrorString*, bool* out_result) override; |
| 83 virtual void setCustomObjectFormatterEnabled(ErrorString*, bool) override fi
nal; | 83 virtual void setCustomObjectFormatterEnabled(ErrorString*, bool) override fi
nal; |
| 84 | 84 |
| 85 virtual void setFrontend(InspectorFrontend*) override final; | 85 virtual void setFrontend(InspectorFrontend*) override final; |
| 86 virtual void clearFrontend() override final; | 86 virtual void clearFrontend() override final; |
| 87 virtual void restore() override final; | 87 virtual void restore() override final; |
| 88 | 88 |
| 89 protected: | 89 protected: |
| (...skipping 13 matching lines...) Expand all Loading... |
| 103 ScriptStateToId m_scriptStateToId; | 103 ScriptStateToId m_scriptStateToId; |
| 104 | 104 |
| 105 private: | 105 private: |
| 106 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; | 106 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; |
| 107 ScriptDebugServer* m_scriptDebugServer; | 107 ScriptDebugServer* m_scriptDebugServer; |
| 108 }; | 108 }; |
| 109 | 109 |
| 110 } // namespace blink | 110 } // namespace blink |
| 111 | 111 |
| 112 #endif // InspectorRuntimeAgent_h | 112 #endif // InspectorRuntimeAgent_h |
| OLD | NEW |