Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: content/common/image_downloader/image_downloader.mojom

Issue 1085783002: Replace image_messages.h with Mojo service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 module mojo; 5 module image_downloader;
6 6
7 interface Pingable { 7 import "image_downloader_types.mojom";
8 Ping(string message) => (string app_url, string connection_url, string message ); 8
9 interface ImageDownloader {
Anand Mistry (off Chromium) 2015/04/16 01:07:16 Please add a short comment on what this is.
leonhsl(Using Gerrit) 2015/04/17 06:14:34 Done.
10 DownloadImage(DownloadReq req) => (DownloadResult result);
9 }; 11 };
12
nasko 2015/04/15 20:57:22 nit: No need for extra new line at end of file.
leonhsl(Using Gerrit) 2015/04/17 06:14:34 Done.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698