Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9b39df06 authored by Alex Mang's avatar Alex Mang Committed by Android (Google) Code Review
Browse files

Merge "Adding query length parameter to protobuf" into ub-launcher3-qt-dev

parents c8dc2ecb 68c67540
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -56,6 +56,7 @@ message Target {
  optional int32 predictedRank = 15;
  optional TargetExtension extension = 16;
  optional TipType tip_type = 17;
  optional int32 search_query_length = 18;
}

// Used to define what type of item a Target would represent.
+4 −0
Original line number Diff line number Diff line
@@ -144,6 +144,10 @@ public class LoggerUtils {
                    + "), pageIdx=" + t.pageIndex;

        }
        if (t.searchQueryLength != 0) {
            typeStr += ", searchQueryLength=" + t.searchQueryLength;
        }

        if (t.itemType == ItemType.TASK) {
            typeStr += ", pageIdx=" + t.pageIndex;
        }