blob: 4636cba8036a1fc6435d0b007b6d8e44f6b65407 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package com.android.server.status;
import android.os.IBinder;
import android.view.View;
class StatusBarNotification {
IBinder key;
NotificationData data;
View view;
View contentView;
}
|