| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 void getCompletions(ErrorString*, | 79 void getCompletions(ErrorString*, |
| 80 const String& expression, | 80 const String& expression, |
| 81 const int* executionContextId, | 81 const int* executionContextId, |
| 82 RefPtr<TypeBuilder::Array<String> >& result); | 82 RefPtr<TypeBuilder::Array<String> >& result); |
| 83 | 83 |
| 84 void releaseObjectGroup(ErrorString*, const String& objectGroup); | 84 void releaseObjectGroup(ErrorString*, const String& objectGroup); |
| 85 | 85 |
| 86 void getProperties(ErrorString*, const String& objectId, const bool* ownProp
erties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilde
r::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder
::Runtime::InternalPropertyDescriptor> >& internalProperties); | 86 void getProperties(ErrorString*, const String& objectId, const bool* ownProp
erties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilde
r::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder
::Runtime::InternalPropertyDescriptor> >& internalProperties); |
| 87 void getProperty(ErrorString*, const String& objectId, const RefPtr<JSONArra
y>& propertyPath, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilde
r::OptOutput<bool>* wasThrown); | 87 void getProperty(ErrorString*, const String& objectId, const RefPtr<JSONArra
y>& propertyPath, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilde
r::OptOutput<bool>* wasThrown); |
| 88 | 88 |
| 89 int addExecutionContextToFrontendHelper(DartScriptState*, bool isPageContext
, const String& name, const String& frameId); | 89 void addExecutionContextToFrontendHelper(DartScriptState*, bool isPageContex
t, const String& name, const String& frameId); |
| 90 private: | 90 private: |
| 91 DartInjectedScript* injectedScriptForEval(ErrorString*, const int* execution
ContextId); | 91 DartInjectedScript* injectedScriptForEval(ErrorString*, const int* execution
ContextId); |
| 92 | 92 |
| 93 DartInjectedScriptManager* m_injectedScriptManager; | 93 DartInjectedScriptManager* m_injectedScriptManager; |
| 94 InspectorRuntimeAgent* m_inspectorRuntimeAgent; | 94 InspectorRuntimeAgent* m_inspectorRuntimeAgent; |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 } // namespace blink | 97 } // namespace blink |
| 98 | 98 |
| 99 #endif // InspectorRuntimeAgent_h | 99 #endif // InspectorRuntimeAgent_h |
| OLD | NEW |