• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2021 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.sdksandbox;
18 
19 import android.os.Bundle;
20 import android.os.IBinder;
21 import android.view.SurfaceControlViewHost.SurfacePackage;
22 
23 import com.android.sdksandbox.ISdkSandboxManagerToSdkSandboxCallback;
24 
25 /** @hide */
26 oneway interface ISdkSandboxToSdkSandboxManagerCallback {
27     const int LOAD_SDK_ALREADY_LOADED = 1;
28     const int LOAD_SDK_PROVIDER_INIT_ERROR = 2;
29     const int LOAD_SDK_NOT_FOUND = 3;
30     const int LOAD_SDK_INSTANTIATION_ERROR = 3;
31 
32     const int SURFACE_PACKAGE_INTERNAL_ERROR = 700;
33 
onLoadSdkSuccess(in Bundle params, in ISdkSandboxManagerToSdkSandboxCallback callback)34     void onLoadSdkSuccess(in Bundle params, in ISdkSandboxManagerToSdkSandboxCallback callback);
onLoadSdkError(int errorCode, in String errorMessage)35     void onLoadSdkError(int errorCode, in String errorMessage);
36 
onSurfacePackageReady(in SurfacePackage surfacePackage, int surfacePackageId, in Bundle params)37     void onSurfacePackageReady(in SurfacePackage surfacePackage, int surfacePackageId, in Bundle params);
onSurfacePackageError(int errorCode, in String errorMessage)38     void onSurfacePackageError(int errorCode, in String errorMessage);
39 }
40