summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnushree Ganjam <ganjam@google.com>2023-03-31 20:36:15 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2023-03-31 20:36:15 +0000
commitd97c0260f0440336daf3d7a24bf150588c359920 (patch)
treef5ff0600292fdd0be5fa76e33826df0b17929705
parent7fb02ebf739d4b1577f6f70fda3c3600158d3afb (diff)
parentf8499e291a09ca0e8bce2cacde5050451aed45ba (diff)
downloadsystemui-d97c0260f0440336daf3d7a24bf150588c359920.tar.gz
Merge "Remove ResultType.NAVVYSITE and resuse it for SESSION_INFO." into udc-dev
-rw-r--r--searchuilib/src/com/android/app/search/ResultType.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchuilib/src/com/android/app/search/ResultType.java b/searchuilib/src/com/android/app/search/ResultType.java
index 9dd9dad..ccab047 100644
--- a/searchuilib/src/com/android/app/search/ResultType.java
+++ b/searchuilib/src/com/android/app/search/ResultType.java
@@ -41,7 +41,7 @@ public class ResultType {
public static final int SUGGEST = 1 << 9;
public static final int ASSISTANT = 1 << 10;
public static final int CHROMETAB = 1 << 11;
- public static final int NAVVYSITE = 1 << 12;
+ public static final int SESSION_INFO = 1 << 12;
public static final int TIPS = 1 << 13;
public static final int PEOPLE_TILE = 1 << 14;
public static final int LEGACY_SHORTCUT = 1 << 15;
@@ -56,7 +56,7 @@ public class ResultType {
public static final int PRIMITIVE_TYPE = APPLICATION | SLICE | SHORTCUT | WIDGETS | ACTION |
LEGACY_SHORTCUT;
public static final int CORPUS_TYPE =
- PEOPLE | SETTING | IMAGE | PLAY | SUGGEST | ASSISTANT | CHROMETAB | NAVVYSITE | TIPS
+ PEOPLE | SETTING | IMAGE | PLAY | SUGGEST | ASSISTANT | CHROMETAB | TIPS
| PEOPLE_TILE | MEMORY | WEB_SUGGEST | VIDEO;
public static final int RANK_TYPE = SYSTEM_POINTER;
public static final int UI_TYPE = EDUCARD | NO_FULFILLMENT;