chromium/v8/src/inspector/remote-object-id.cc

// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/inspector/remote-object-id.h"

#include "../../third_party/inspector_protocol/crdtp/json.h"
#include "src/inspector/protocol/Protocol.h"
#include "src/inspector/string-util.h"

namespace v8_inspector {

namespace {

String16 serializeId(uint64_t isolateId, int injectedScriptId, int id) {}

}  // namespace

RemoteObjectIdBase::RemoteObjectIdBase()
    :{}

bool RemoteObjectIdBase::parseId(const String16& objectId) {}

Response RemoteObjectId::parse(const String16& objectId,
                               std::unique_ptr<RemoteObjectId>* result) {}

String16 RemoteObjectId::serialize(uint64_t isolateId, int injectedScriptId,
                                   int id) {}

Response RemoteCallFrameId::parse(const String16& objectId,
                                  std::unique_ptr<RemoteCallFrameId>* result) {}

String16 RemoteCallFrameId::serialize(uint64_t isolateId, int injectedScriptId,
                                      int frameOrdinal) {}

}  // namespace v8_inspector