OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 const String16& callFrameId, | 79 const String16& callFrameId, |
80 const String16& expression, | 80 const String16& expression, |
81 const String16& objectGroup, | 81 const String16& objectGroup, |
82 bool includeCommandLineAPI, | 82 bool includeCommandLineAPI, |
83 bool returnByValue, | 83 bool returnByValue, |
84 bool generatePreview, | 84 bool generatePreview, |
85 OwnPtr<protocol::Runtime::RemoteObject>* result, | 85 OwnPtr<protocol::Runtime::RemoteObject>* result, |
86 Maybe<bool>* wasThrown, | 86 Maybe<bool>* wasThrown, |
87 Maybe<protocol::Runtime::ExceptionDetails>*); | 87 Maybe<protocol::Runtime::ExceptionDetails>*); |
88 void restartFrame(ErrorString*, v8::Local<v8::Object> callFrames, const Stri
ng16& callFrameId); | 88 void restartFrame(ErrorString*, v8::Local<v8::Object> callFrames, const Stri
ng16& callFrameId); |
89 void getStepInPositions(ErrorString*, v8::Local<v8::Object> callFrames, cons
t String16& callFrameId, Maybe<protocol::Array<protocol::Debugger::Location>>* p
ositions); | |
90 void setVariableValue(ErrorString*, v8::Local<v8::Object> callFrames, const
Maybe<String16>& callFrameIdOpt, const Maybe<String16>& functionObjectIdOpt, int
scopeNumber, const String16& variableName, const String16& newValueStr); | 89 void setVariableValue(ErrorString*, v8::Local<v8::Object> callFrames, const
Maybe<String16>& callFrameIdOpt, const Maybe<String16>& functionObjectIdOpt, int
scopeNumber, const String16& variableName, const String16& newValueStr); |
91 void getFunctionDetails(ErrorString*, const String16& functionId, OwnPtr<pro
tocol::Debugger::FunctionDetails>* result); | 90 void getFunctionDetails(ErrorString*, const String16& functionId, OwnPtr<pro
tocol::Debugger::FunctionDetails>* result); |
92 void getGeneratorObjectDetails(ErrorString*, const String16& functionId, Own
Ptr<protocol::Debugger::GeneratorObjectDetails>* result); | 91 void getGeneratorObjectDetails(ErrorString*, const String16& functionId, Own
Ptr<protocol::Debugger::GeneratorObjectDetails>* result); |
93 void getCollectionEntries(ErrorString*, const String16& objectId, OwnPtr<pro
tocol::Array<protocol::Debugger::CollectionEntry>>* result); | 92 void getCollectionEntries(ErrorString*, const String16& objectId, OwnPtr<pro
tocol::Array<protocol::Debugger::CollectionEntry>>* result); |
94 void getProperties(ErrorString*, const String16& objectId, bool ownPropertie
s, bool accessorPropertiesOnly, bool generatePreview, OwnPtr<protocol::Array<pro
tocol::Runtime::PropertyDescriptor>>* result, Maybe<protocol::Runtime::Exception
Details>*); | 93 void getProperties(ErrorString*, const String16& objectId, bool ownPropertie
s, bool accessorPropertiesOnly, bool generatePreview, OwnPtr<protocol::Array<pro
tocol::Runtime::PropertyDescriptor>>* result, Maybe<protocol::Runtime::Exception
Details>*); |
95 void getInternalProperties(ErrorString*, const String16& objectId, Maybe<pro
tocol::Array<protocol::Runtime::InternalPropertyDescriptor>>* result, Maybe<prot
ocol::Runtime::ExceptionDetails>*); | 94 void getInternalProperties(ErrorString*, const String16& objectId, Maybe<pro
tocol::Array<protocol::Runtime::InternalPropertyDescriptor>>* result, Maybe<prot
ocol::Runtime::ExceptionDetails>*); |
96 void releaseObject(const String16& objectId); | 95 void releaseObject(const String16& objectId); |
97 v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Script>, bool incl
udeCommandLineAPI); | 96 v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Script>, bool incl
udeCommandLineAPI); |
98 | 97 |
99 PassOwnPtr<protocol::Array<protocol::Debugger::CallFrame>> wrapCallFrames(v8
::Local<v8::Object>); | 98 PassOwnPtr<protocol::Array<protocol::Debugger::CallFrame>> wrapCallFrames(v8
::Local<v8::Object>); |
(...skipping 30 matching lines...) Expand all Loading... |
130 v8::Global<v8::Value> m_value; | 129 v8::Global<v8::Value> m_value; |
131 V8DebuggerClient* m_client; | 130 V8DebuggerClient* m_client; |
132 OwnPtr<InjectedScriptNative> m_native; | 131 OwnPtr<InjectedScriptNative> m_native; |
133 int m_contextId; | 132 int m_contextId; |
134 String16 m_origin; | 133 String16 m_origin; |
135 }; | 134 }; |
136 | 135 |
137 } // namespace blink | 136 } // namespace blink |
138 | 137 |
139 #endif | 138 #endif |
OLD | NEW |