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

Commit 724a4f7a authored by Fabrice Di Meglio's avatar Fabrice Di Meglio Committed by Android (Google) Code Review
Browse files

Merge "Update SearchIndexables contract for allowing summary ON and OFF indexing"

parents 7fbde1e8 98274a97
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -73,7 +73,8 @@ public class SearchIndexablesContract {
    public static final String[] INDEXABLES_RAW_COLUMNS = new String[] {
            RawData.COLUMN_RANK,
            RawData.COLUMN_TITLE,
            RawData.COLUMN_SUMMARY,
            RawData.COLUMN_SUMMARY_ON,
            RawData.COLUMN_SUMMARY_OFF,
            RawData.COLUMN_KEYWORDS,
            RawData.COLUMN_SCREEN_TITLE,
            RawData.COLUMN_CLASS_NAME,
@@ -123,9 +124,14 @@ public class SearchIndexablesContract {
        public static final String COLUMN_TITLE = "title";

        /**
         * Summary's raw data.
         * Summary's raw data when the data is "ON".
         */
        public static final String COLUMN_SUMMARY = "summary";
        public static final String COLUMN_SUMMARY_ON = "summaryOn";

        /**
         * Summary's raw data when the data is "OFF".
         */
        public static final String COLUMN_SUMMARY_OFF = "summaryOff";

        /**
         * Keywords' raw data.