Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 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 | |
| 5 import "../network/url_loader.mojom" | |
| 6 | |
| 7 module mojo.launcher { | |
| 8 | |
| 9 interface Launcher { | |
| 10 Launch(string url); | |
| 11 }; | |
| 12 | |
| 13 interface Launchable { | |
| 14 OnLaunch(mojo.URLResponse response, | |
| 15 handle<data_pipe_consumer> response_body_stream); | |
| 16 }; | |
| 17 | |
| 18 } | |
| OLD | NEW |