blob: 6d04cb088a91db46e03ffcbc29b50f87d1b635ec [file] [log] [blame]
Bryan Cassell58b7bbb2016-12-16 10:27:09 -08001/*
2 * Copyright (C) 2016 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
17package com.google.android.leanbackjank;
18
19public final class IntentKeys {
20
21 public static final String CATEGORY_COUNT = "CATEGORY_COUNT";
22 public static final String ENTRIES_PER_CATEGORY = "ENTRIES_PER_CATEGORY";
23 public static final String CARD_WIDTH = "CARD_WIDTH";
24 public static final String CARD_HEIGHT = "CARD_HEIGHT";
25 public static final String DISABLE_SHADOWS = "ENABLE_SHADOWS";
Daniel Cardenas734bc412017-01-11 13:51:13 -080026 public static final String WHICH_VIDEO = "WHICH_VIDEO";
Bryan Cassell58b7bbb2016-12-16 10:27:09 -080027 public static final String USE_SINGLE_BITMAP = "USE_SINGLE_BITMAP";
28
Daniel Cardenas734bc412017-01-11 13:51:13 -080029 // Define values for WHICH_VIDEO.
30 public static final int NO_VIDEO = 0;
31 public static final int VIDEO_480P_60FPS = 1;
32 public static final int VIDEO_1080P_60FPS = 2;
33 public static final int VIDEO_2160P_60FPS = 3;
34
Bryan Cassell58b7bbb2016-12-16 10:27:09 -080035 private IntentKeys() {
36 }
37}