Chromium Code Reviews| Index: chrome/android/java/src/org/chromium/chrome/browser/photo_picker/IDecoderService.aidl |
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/photo_picker/IDecoderService.aidl b/chrome/android/java/src/org/chromium/chrome/browser/photo_picker/IDecoderService.aidl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..eaea85e62ccab12de7370f98ee694e7ff59bd534 |
| --- /dev/null |
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/photo_picker/IDecoderService.aidl |
| @@ -0,0 +1,13 @@ |
| +// Copyright 2017 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. |
| + |
| +package org.chromium.chrome.browser.photo_picker; |
| + |
| +import android.os.Bundle; |
| + |
| +import IDecoderServiceCallback; |
| + |
| +interface IDecoderService { |
|
Theresa
2017/06/20 15:11:56
Does this need documentation?
Finnur
2017/06/20 15:49:16
Done.
|
| + oneway void decodeImage(in Bundle payload, IDecoderServiceCallback listener); |
| +} |