summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/notification/missedcalls/MissedCallNotificationTags.java
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2018-02-15 18:08:21 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-02-15 18:08:21 +0000
commitc54ce2658988ca36ca3dfab00daefca4dcfed3b2 (patch)
treefb432a423f670969da57a4900b5ff7dcc35d2f8c /java/com/android/dialer/notification/missedcalls/MissedCallNotificationTags.java
parent70f98d3997c42c7d4e3b3e3920659aca78820d14 (diff)
parent39009b4ad73d5017295b30fb18a77224195f06af (diff)
Merge changes Ib360d3bc,Iae40d0ab,I486f7b1a,I709a1e30
* changes: Mark calls as read in new call log. Restored work profile contacts to Dialer search. Clicking on a missed call in the call log no longer crashes the app. Add bottom sheet options for blocked and/or spam numbers in the new call log.
Diffstat (limited to 'java/com/android/dialer/notification/missedcalls/MissedCallNotificationTags.java')
-rw-r--r--java/com/android/dialer/notification/missedcalls/MissedCallNotificationTags.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/java/com/android/dialer/notification/missedcalls/MissedCallNotificationTags.java b/java/com/android/dialer/notification/missedcalls/MissedCallNotificationTags.java
new file mode 100644
index 000000000..64f28eeec
--- /dev/null
+++ b/java/com/android/dialer/notification/missedcalls/MissedCallNotificationTags.java
@@ -0,0 +1,29 @@
+/*
+ * Copyright (C) 2018 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.dialer.notification.missedcalls;
+
+import android.net.Uri;
+import android.support.annotation.NonNull;
+
+/** Static methods related to missed call notification tags. */
+public final class MissedCallNotificationTags {
+
+ /** Gets the notification tag for a single call. */
+ public static String getNotificationTagForCallUri(@NonNull Uri callUri) {
+ return MissedCallConstants.NOTIFICATION_TAG_PREFIX + callUri;
+ }
+}