blob: ff99c0955f44acd7fbe35728ca6e5b8e22ec9f06 [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.
[JavaPackage="org.chromium.mojo.bindings.test.imported"]
module imported {
// This sample just defines some types that are imported into
// sample_service.mojom, to show how import works.
enum Shape {
SHAPE_RECTANGLE = 1,
SHAPE_CIRCLE,
SHAPE_TRIANGLE,
};
struct Point {
int32 x;
int32 y;
};
interface ImportedInterface {
};
} // module imported