url_test.mojom 368 B

12345678910111213141516
  1. // Copyright 2016 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. module url.mojom;
  5. import "url/mojom/origin.mojom";
  6. import "url/mojom/url.mojom";
  7. interface UrlTest {
  8. [Sync]
  9. BounceUrl(Url in) => (Url out);
  10. [Sync]
  11. BounceOrigin(Origin in) => (Origin out);
  12. };