blob: ce8023ad30f09d0e45c693f682059bf0550f5076 [file] [log] [blame]
// Copyright 2015 The Chromium OS 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 "libprotobinder/ibinder.h"
#include <stddef.h>
namespace protobinder {
IBinder::IBinder() {
}
IBinder::~IBinder() {
}
const BinderHost* IBinder::GetBinderHost() const {
return nullptr;
}
const BinderProxy* IBinder::GetBinderProxy() const {
return nullptr;
}
BinderHost* IBinder::GetBinderHost() {
return nullptr;
}
BinderProxy* IBinder::GetBinderProxy() {
return nullptr;
}
} // namespace protobinder