Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3246)

Unified Diff: chrome/browser/permissions/permission_update_infobar_delegate_android.cc

Issue 1362803002: Add logic to resolve permission mismatches in Android M for webrtc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment in media_stream_devices_controller Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/permissions/permission_update_infobar_delegate_android.cc
diff --git a/chrome/browser/permissions/permission_update_infobar_delegate_android.cc b/chrome/browser/permissions/permission_update_infobar_delegate_android.cc
index 35ad88576f527f697753a71afb472fefb1a99b1c..680c48121c42f6ec46e45925a846dba842c05b91 100644
--- a/chrome/browser/permissions/permission_update_infobar_delegate_android.cc
+++ b/chrome/browser/permissions/permission_update_infobar_delegate_android.cc
@@ -76,7 +76,10 @@ bool PermissionUpdateInfoBarDelegate::RegisterPermissionUpdateInfoBarDelegate(
void PermissionUpdateInfoBarDelegate::OnPermissionResult(
JNIEnv* env, jobject obj, jboolean all_permissions_granted) {
- callback_.Run(all_permissions_granted);
+ PermissionUpdatedCallback cb = callback_;
Guido Urdaneta 2015/09/23 13:32:14 Can you use base::ResetAndReturn() here?
Ted C 2015/09/23 19:45:34 Neat! Done
Peter Kasting 2016/09/21 21:33:44 This change got referenced in another review I was
Peter Kasting 2016/09/21 21:37:08 To be clear: I understand why you want to reset th
+ callback_.Reset();
+ cb.Run(all_permissions_granted);
+
infobar()->RemoveSelf();
}
@@ -106,6 +109,9 @@ PermissionUpdateInfoBarDelegate::PermissionUpdateInfoBarDelegate(
PermissionUpdateInfoBarDelegate::~PermissionUpdateInfoBarDelegate() {
Java_PermissionUpdateInfoBarDelegate_onNativeDestroyed(
base::android::AttachCurrentThread(), java_delegate_.obj());
+
+ if (!callback_.is_null())
+ callback_.Run(false);
}
int PermissionUpdateInfoBarDelegate::GetIconId() const {
@@ -167,6 +173,15 @@ bool PermissionUpdateInfoBarDelegate::Accept() {
}
bool PermissionUpdateInfoBarDelegate::Cancel() {
- callback_.Run(false);
+ PermissionUpdatedCallback cb = callback_;
Guido Urdaneta 2015/09/23 13:32:14 base::ResetAndReturn()
+ callback_.Reset();
+ cb.Run(false);
+
return true;
}
+
+void PermissionUpdateInfoBarDelegate::InfoBarDismissed() {
+ PermissionUpdatedCallback cb = callback_;
+ callback_.Reset();
+ cb.Run(false);
+}

Powered by Google App Engine
This is Rietveld 408576698