| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/media/midi_permission_infobar_delegate.h" | 5 #include "chrome/browser/media/midi_permission_infobar_delegate.h" |
| 6 | 6 |
| 7 #include "chrome/browser/content_settings/permission_queue_controller.h" | 7 #include "chrome/browser/content_settings/permission_queue_controller.h" |
| 8 #include "chrome/browser/content_settings/permission_request_id.h" | 8 #include "chrome/browser/content_settings/permission_request_id.h" |
| 9 #include "chrome/browser/infobars/infobar.h" | |
| 10 #include "chrome/browser/infobars/infobar_service.h" | 9 #include "chrome/browser/infobars/infobar_service.h" |
| 11 #include "content/public/browser/navigation_details.h" | 10 #include "content/public/browser/navigation_details.h" |
| 12 #include "content/public/browser/navigation_entry.h" | 11 #include "content/public/browser/navigation_entry.h" |
| 13 #include "content/public/browser/web_contents.h" | 12 #include "content/public/browser/web_contents.h" |
| 14 #include "grit/generated_resources.h" | 13 #include "grit/generated_resources.h" |
| 15 #include "grit/locale_settings.h" | 14 #include "grit/locale_settings.h" |
| 16 #include "grit/theme_resources.h" | 15 #include "grit/theme_resources.h" |
| 17 #include "net/base/net_util.h" | 16 #include "net/base/net_util.h" |
| 18 #include "ui/base/l10n/l10n_util.h" | 17 #include "ui/base/l10n/l10n_util.h" |
| 19 | 18 |
| 20 // static | 19 // static |
| 21 InfoBar* MIDIPermissionInfoBarDelegate::Create( | 20 InfoBarDelegate* MIDIPermissionInfoBarDelegate::Create( |
| 22 InfoBarService* infobar_service, | 21 InfoBarService* infobar_service, |
| 23 PermissionQueueController* controller, | 22 PermissionQueueController* controller, |
| 24 const PermissionRequestID& id, | 23 const PermissionRequestID& id, |
| 25 const GURL& requesting_frame, | 24 const GURL& requesting_frame, |
| 26 const std::string& display_languages) { | 25 const std::string& display_languages) { |
| 27 const content::NavigationEntry* committed_entry = | 26 const content::NavigationEntry* committed_entry = |
| 28 infobar_service->web_contents()->GetController().GetLastCommittedEntry(); | 27 infobar_service->web_contents()->GetController().GetLastCommittedEntry(); |
| 29 return infobar_service->AddInfoBar(ConfirmInfoBarDelegate::CreateInfoBar( | 28 return infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>( |
| 30 scoped_ptr<ConfirmInfoBarDelegate>(new MIDIPermissionInfoBarDelegate( | 29 new MIDIPermissionInfoBarDelegate( |
| 31 controller, id, requesting_frame, | 30 infobar_service, controller, id, requesting_frame, |
| 32 committed_entry ? committed_entry->GetUniqueID() : 0, | 31 committed_entry ? committed_entry->GetUniqueID() : 0, |
| 33 display_languages)))); | 32 display_languages))); |
| 34 } | 33 } |
| 35 | 34 |
| 36 MIDIPermissionInfoBarDelegate::MIDIPermissionInfoBarDelegate( | 35 MIDIPermissionInfoBarDelegate::MIDIPermissionInfoBarDelegate( |
| 36 InfoBarService* infobar_service, |
| 37 PermissionQueueController* controller, | 37 PermissionQueueController* controller, |
| 38 const PermissionRequestID& id, | 38 const PermissionRequestID& id, |
| 39 const GURL& requesting_frame, | 39 const GURL& requesting_frame, |
| 40 int contents_unique_id, | 40 int contents_unique_id, |
| 41 const std::string& display_languages) | 41 const std::string& display_languages) |
| 42 : ConfirmInfoBarDelegate(), | 42 : ConfirmInfoBarDelegate(infobar_service), |
| 43 controller_(controller), | 43 controller_(controller), |
| 44 id_(id), | 44 id_(id), |
| 45 requesting_frame_(requesting_frame), | 45 requesting_frame_(requesting_frame), |
| 46 contents_unique_id_(contents_unique_id), | 46 contents_unique_id_(contents_unique_id), |
| 47 display_languages_(display_languages) { | 47 display_languages_(display_languages) { |
| 48 } | 48 } |
| 49 | 49 |
| 50 MIDIPermissionInfoBarDelegate::~MIDIPermissionInfoBarDelegate() { | 50 MIDIPermissionInfoBarDelegate::~MIDIPermissionInfoBarDelegate() { |
| 51 } | 51 } |
| 52 | 52 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 bool MIDIPermissionInfoBarDelegate::Cancel() { | 93 bool MIDIPermissionInfoBarDelegate::Cancel() { |
| 94 SetPermission(true, false); | 94 SetPermission(true, false); |
| 95 return true; | 95 return true; |
| 96 } | 96 } |
| 97 | 97 |
| 98 void MIDIPermissionInfoBarDelegate::SetPermission(bool update_content_setting, | 98 void MIDIPermissionInfoBarDelegate::SetPermission(bool update_content_setting, |
| 99 bool allowed) { | 99 bool allowed) { |
| 100 controller_->OnPermissionSet(id_, requesting_frame_, web_contents()->GetURL(), | 100 controller_->OnPermissionSet(id_, requesting_frame_, web_contents()->GetURL(), |
| 101 update_content_setting, allowed); | 101 update_content_setting, allowed); |
| 102 } | 102 } |
| OLD | NEW |