blob: aceade66eda51ea9e40a59c865ea0a61974f3f8f [file] [log] [blame]
// Copyright 2015 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.
module reaper;
// Used to tranfer nodes between applications. See Reaper::StartTransfer().
interface Transfer {
Complete(uint64 application_secret, uint32 node);
// No-op used for creating ordering between interfaces.
Ping() => ();
};