blob: 45f291fdb4fc614cd291a5eb3be324c292fe4083 [file] [log] [blame]
// Copyright 2014 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 content {
[Client=RendererTarget]
interface BrowserTarget {
PingResponse();
};
interface RendererTarget {
Ping();
};
}