Home | History | Annotate | Download | only in inspector

Lines Matching refs:Response

198 Response V8InspectorSessionImpl::findInjectedScript(
203 if (!context) return Response::Error("Cannot find context with specified id");
208 return Response::Error("Execution was terminated");
209 return Response::Error("Cannot access specified execution context");
215 return Response::OK();
218 Response V8InspectorSessionImpl::findInjectedScript(
241 Response response = unwrapObject(toString16(objectId), object, context,
243 if (!response.isSuccess()) {
245 String16 errorMessage = response.errorMessage();
254 Response V8InspectorSessionImpl::unwrapObject(const String16& objectId,
259 Response response = RemoteObjectId::parse(objectId, &remoteId);
260 if (!response.isSuccess()) return response;
262 response = findInjectedScript(remoteId.get(), injectedScript);
263 if (!response.isSuccess()) return response;
264 response = injectedScript->findObject(*remoteId, object);
265 if (!response.isSuccess()) return response;
268 return Response::OK();