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

Side by Side Diff: chrome/browser/permissions/permission_infobar_delegate.cc

Issue 2145373002: Revert of Add hooks to permission layer for permission action reporting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@permission-reporter-implementation
Patch Set: Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/permissions/permission_infobar_delegate.h" 5 #include "chrome/browser/permissions/permission_infobar_delegate.h"
6 6
7 #include "chrome/browser/permissions/permission_uma_util.h" 7 #include "chrome/browser/permissions/permission_uma_util.h"
8 #include "chrome/grit/generated_resources.h" 8 #include "chrome/grit/generated_resources.h"
9 #include "components/infobars/core/infobar.h" 9 #include "components/infobars/core/infobar.h"
10 #include "components/url_formatter/elide_url.h" 10 #include "components/url_formatter/elide_url.h"
11 #include "ui/base/l10n/l10n_util.h" 11 #include "ui/base/l10n/l10n_util.h"
12 12
13 PermissionInfobarDelegate::~PermissionInfobarDelegate() { 13 PermissionInfobarDelegate::~PermissionInfobarDelegate() {
14 if (!action_taken_) 14 if (!action_taken_)
15 // TODO(stefanocs): Pass in a non null profile. 15 PermissionUmaUtil::PermissionIgnored(permission_type_, requesting_origin_);
16 PermissionUmaUtil::PermissionIgnored(permission_type_, requesting_origin_,
17 nullptr);
18 } 16 }
19 17
20 PermissionInfobarDelegate::PermissionInfobarDelegate( 18 PermissionInfobarDelegate::PermissionInfobarDelegate(
21 const GURL& requesting_origin, 19 const GURL& requesting_origin,
22 content::PermissionType permission_type, 20 content::PermissionType permission_type,
23 ContentSettingsType content_settings_type, 21 ContentSettingsType content_settings_type,
24 const base::Callback<void(bool, bool)>& callback) 22 const base::Callback<void(bool, bool)>& callback)
25 : requesting_origin_(requesting_origin), 23 : requesting_origin_(requesting_origin),
26 action_taken_(false), 24 action_taken_(false),
27 permission_type_(permission_type), 25 permission_type_(permission_type),
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 bool PermissionInfobarDelegate::Cancel() { 62 bool PermissionInfobarDelegate::Cancel() {
65 SetPermission(true, false); 63 SetPermission(true, false);
66 return true; 64 return true;
67 } 65 }
68 66
69 void PermissionInfobarDelegate::SetPermission(bool update_content_setting, 67 void PermissionInfobarDelegate::SetPermission(bool update_content_setting,
70 bool allowed) { 68 bool allowed) {
71 action_taken_ = true; 69 action_taken_ = true;
72 callback_.Run(update_content_setting, allowed); 70 callback_.Run(update_content_setting, allowed);
73 } 71 }
OLDNEW
« no previous file with comments | « chrome/browser/permissions/permission_context_base.cc ('k') | chrome/browser/permissions/permission_queue_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698