diff options
author | jamesr <jamesr@chromium.org> | 2014-11-03 17:46:10 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-04 01:46:31 +0000 |
commit | 0f18be91be7c4aa9e55ad020fa5a2408f389a9d1 (patch) | |
tree | 884ce770b6c27bf696e15ece17cfa61c0ba5da19 /mojo/services/public/interfaces/content_handler | |
parent | 174ab92a101d02bce1301d8fdc8ec15ec5557137 (diff) | |
download | chromium_src-0f18be91be7c4aa9e55ad020fa5a2408f389a9d1.zip chromium_src-0f18be91be7c4aa9e55ad020fa5a2408f389a9d1.tar.gz chromium_src-0f18be91be7c4aa9e55ad020fa5a2408f389a9d1.tar.bz2 |
Update mojo sdk to rev cfc99316100efdfa7d53d83f9e07f1d4d3765c21
Most changes are updates to the mojom syntax for modules.
R=viettrungluu@chromium.org
TBR=jam@chromium.org
Review URL: https://codereview.chromium.org/698883005
Cr-Commit-Position: refs/heads/master@{#302542}
Diffstat (limited to 'mojo/services/public/interfaces/content_handler')
-rw-r--r-- | mojo/services/public/interfaces/content_handler/content_handler.mojom | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mojo/services/public/interfaces/content_handler/content_handler.mojom b/mojo/services/public/interfaces/content_handler/content_handler.mojom index 7230ddb..39704ee 100644 --- a/mojo/services/public/interfaces/content_handler/content_handler.mojom +++ b/mojo/services/public/interfaces/content_handler/content_handler.mojom @@ -2,13 +2,11 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +module mojo; + import "mojo/public/interfaces/application/shell.mojom"; import "mojo/services/public/interfaces/network/url_loader.mojom"; -module mojo { - interface ContentHandler { StartApplication(Shell shell, URLResponse response); }; - -} |