blob: 08b0474939e36488e50b09d5f9f28733ef76cffd [file] [log] [blame]
// Copyright 2022 The Chromium 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 "ipcz/api_object.h"
namespace ipcz {
APIObject::APIObject(ObjectType type) : type_(type) {}
APIObject::~APIObject() = default;
bool APIObject::CanSendFrom(Portal& sender) {
return false;
}
} // namespace ipcz