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/protected_media_identifier_infobar_delegate.h" | 5 #include "chrome/browser/media/protected_media_identifier_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/infobars/infobar.h" |
8 #include "content/public/browser/navigation_details.h" | 9 #include "content/public/browser/navigation_details.h" |
9 #include "content/public/browser/navigation_entry.h" | 10 #include "content/public/browser/navigation_entry.h" |
10 #include "grit/generated_resources.h" | 11 #include "grit/generated_resources.h" |
11 #include "grit/theme_resources.h" | 12 #include "grit/theme_resources.h" |
12 #include "net/base/net_util.h" | 13 #include "net/base/net_util.h" |
13 #include "ui/base/l10n/l10n_util.h" | 14 #include "ui/base/l10n/l10n_util.h" |
14 | 15 |
15 #if defined(OS_ANDROID) | 16 #if defined(OS_ANDROID) |
16 #include "chrome/browser/android/chromium_application.h" | 17 #include "chrome/browser/android/chromium_application.h" |
17 #endif | 18 #endif |
18 | 19 |
19 // static | 20 // static |
20 InfoBarDelegate* ProtectedMediaIdentifierInfoBarDelegate::Create( | 21 InfoBar* ProtectedMediaIdentifierInfoBarDelegate::Create( |
21 InfoBarService* infobar_service, | 22 InfoBarService* infobar_service, |
22 PermissionQueueController* controller, | 23 PermissionQueueController* controller, |
23 const PermissionRequestID& id, | 24 const PermissionRequestID& id, |
24 const GURL& requesting_frame, | 25 const GURL& requesting_frame, |
25 const std::string& display_languages) { | 26 const std::string& display_languages) { |
26 const content::NavigationEntry* committed_entry = | 27 const content::NavigationEntry* committed_entry = |
27 infobar_service->web_contents()->GetController().GetLastCommittedEntry(); | 28 infobar_service->web_contents()->GetController().GetLastCommittedEntry(); |
28 return infobar_service->AddInfoBar( | 29 return infobar_service->AddInfoBar(ConfirmInfoBarDelegate::CreateInfoBar( |
29 scoped_ptr<InfoBarDelegate>(new ProtectedMediaIdentifierInfoBarDelegate( | 30 scoped_ptr<ConfirmInfoBarDelegate>( |
30 infobar_service, controller, id, requesting_frame, | 31 new ProtectedMediaIdentifierInfoBarDelegate( |
31 committed_entry ? committed_entry->GetUniqueID() : 0, | 32 controller, id, requesting_frame, |
32 display_languages))); | 33 committed_entry ? committed_entry->GetUniqueID() : 0, |
| 34 display_languages)))); |
33 } | 35 } |
34 | 36 |
35 | 37 |
36 ProtectedMediaIdentifierInfoBarDelegate:: | 38 ProtectedMediaIdentifierInfoBarDelegate:: |
37 ProtectedMediaIdentifierInfoBarDelegate( | 39 ProtectedMediaIdentifierInfoBarDelegate( |
38 InfoBarService* infobar_service, | 40 PermissionQueueController* controller, |
39 PermissionQueueController* controller, | 41 const PermissionRequestID& id, |
40 const PermissionRequestID& id, | 42 const GURL& requesting_frame, |
41 const GURL& requesting_frame, | 43 int contents_unique_id, |
42 int contents_unique_id, | 44 const std::string& display_languages) |
43 const std::string& display_languages) | 45 : ConfirmInfoBarDelegate(), |
44 : ConfirmInfoBarDelegate(infobar_service), | |
45 controller_(controller), | 46 controller_(controller), |
46 id_(id), | 47 id_(id), |
47 requesting_frame_(requesting_frame), | 48 requesting_frame_(requesting_frame), |
48 contents_unique_id_(contents_unique_id), | 49 contents_unique_id_(contents_unique_id), |
49 display_languages_(display_languages) { | 50 display_languages_(display_languages) { |
50 } | 51 } |
51 | 52 |
52 ProtectedMediaIdentifierInfoBarDelegate:: | 53 ProtectedMediaIdentifierInfoBarDelegate:: |
53 ~ProtectedMediaIdentifierInfoBarDelegate() { | 54 ~ProtectedMediaIdentifierInfoBarDelegate() { |
54 } | 55 } |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 | 121 |
121 bool ProtectedMediaIdentifierInfoBarDelegate::LinkClicked( | 122 bool ProtectedMediaIdentifierInfoBarDelegate::LinkClicked( |
122 WindowOpenDisposition disposition) { | 123 WindowOpenDisposition disposition) { |
123 #if defined(OS_ANDROID) | 124 #if defined(OS_ANDROID) |
124 chrome::android::ChromiumApplication::OpenProtectedContentSettings(); | 125 chrome::android::ChromiumApplication::OpenProtectedContentSettings(); |
125 #else | 126 #else |
126 NOTIMPLEMENTED(); | 127 NOTIMPLEMENTED(); |
127 #endif | 128 #endif |
128 return false; // Do not dismiss the info bar. | 129 return false; // Do not dismiss the info bar. |
129 } | 130 } |
OLD | NEW |