Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_frameworks_base-old
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Farzin Kazemzadeh
platform_frameworks_base-old
Commits
9b6df849
Commit
9b6df849
authored
1 year ago
by
Manjeet Rulhania
Committed by
Android (Google) Code Review
1 year ago
Browse files
Options
Downloads
Plain Diff
Merge "Get safety center service when sending notification" into main
parents
b7b10ae8
a6f9f2f9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
services/core/java/com/android/server/sensorprivacy/SensorPrivacyService.java
+3
-4
3 additions, 4 deletions
...om/android/server/sensorprivacy/SensorPrivacyService.java
with
3 additions
and
4 deletions
services/core/java/com/android/server/sensorprivacy/SensorPrivacyService.java
+
3
−
4
View file @
9b6df849
...
...
@@ -174,8 +174,6 @@ public final class SensorPrivacyService extends SystemService {
private
CallStateHelper
mCallStateHelper
;
private
KeyguardManager
mKeyguardManager
;
private
SafetyCenterManager
mSafetyCenterManager
;
private
int
mCurrentUser
=
USER_NULL
;
public
SensorPrivacyService
(
Context
context
)
{
...
...
@@ -191,7 +189,6 @@ public final class SensorPrivacyService extends SystemService {
mTelephonyManager
=
context
.
getSystemService
(
TelephonyManager
.
class
);
mPackageManagerInternal
=
getLocalService
(
PackageManagerInternal
.
class
);
mSensorPrivacyServiceImpl
=
new
SensorPrivacyServiceImpl
();
mSafetyCenterManager
=
mContext
.
getSystemService
(
SafetyCenterManager
.
class
);
}
@Override
...
...
@@ -656,7 +653,9 @@ public final class SensorPrivacyService extends SystemService {
String
contentTitle
=
getUiContext
().
getString
(
messageRes
);
Spanned
contentText
=
Html
.
fromHtml
(
getUiContext
().
getString
(
R
.
string
.
sensor_privacy_start_use_notification_content_text
,
packageLabel
),
0
);
String
action
=
mSafetyCenterManager
.
isSafetyCenterEnabled
()
SafetyCenterManager
safetyCenterManager
=
mContext
.
getSystemService
(
SafetyCenterManager
.
class
);
String
action
=
safetyCenterManager
.
isSafetyCenterEnabled
()
?
Settings
.
ACTION_PRIVACY_CONTROLS
:
Settings
.
ACTION_PRIVACY_SETTINGS
;
PendingIntent
contentIntent
=
PendingIntent
.
getActivity
(
mContext
,
sensor
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment