| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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/ui/content_settings/media_setting_changed_infobar_deleg
ate.h" | 5 #include "chrome/browser/ui/content_settings/media_setting_changed_infobar_deleg
ate.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "chrome/browser/infobars/infobar_service.h" | 8 #include "chrome/browser/infobars/infobar_service.h" |
| 9 #include "chrome/grit/generated_resources.h" |
| 9 #include "components/infobars/core/infobar.h" | 10 #include "components/infobars/core/infobar.h" |
| 10 #include "content/public/browser/web_contents.h" | 11 #include "content/public/browser/web_contents.h" |
| 11 #include "grit/generated_resources.h" | |
| 12 #include "grit/theme_resources.h" | 12 #include "grit/theme_resources.h" |
| 13 #include "ui/base/l10n/l10n_util.h" | 13 #include "ui/base/l10n/l10n_util.h" |
| 14 | 14 |
| 15 // static | 15 // static |
| 16 void MediaSettingChangedInfoBarDelegate::Create( | 16 void MediaSettingChangedInfoBarDelegate::Create( |
| 17 InfoBarService* infobar_service) { | 17 InfoBarService* infobar_service) { |
| 18 infobar_service->AddInfoBar(ConfirmInfoBarDelegate::CreateInfoBar( | 18 infobar_service->AddInfoBar(ConfirmInfoBarDelegate::CreateInfoBar( |
| 19 scoped_ptr<ConfirmInfoBarDelegate>( | 19 scoped_ptr<ConfirmInfoBarDelegate>( |
| 20 new MediaSettingChangedInfoBarDelegate()))); | 20 new MediaSettingChangedInfoBarDelegate()))); |
| 21 } | 21 } |
| (...skipping 28 matching lines...) Expand all Loading... |
| 50 DCHECK_EQ(BUTTON_OK, button); | 50 DCHECK_EQ(BUTTON_OK, button); |
| 51 return l10n_util::GetStringUTF16(IDS_CONTENT_SETTING_CHANGED_INFOBAR_BUTTON); | 51 return l10n_util::GetStringUTF16(IDS_CONTENT_SETTING_CHANGED_INFOBAR_BUTTON); |
| 52 } | 52 } |
| 53 | 53 |
| 54 bool MediaSettingChangedInfoBarDelegate::Accept() { | 54 bool MediaSettingChangedInfoBarDelegate::Accept() { |
| 55 content::WebContents* web_contents = | 55 content::WebContents* web_contents = |
| 56 InfoBarService::WebContentsFromInfoBar(infobar()); | 56 InfoBarService::WebContentsFromInfoBar(infobar()); |
| 57 web_contents->GetController().Reload(true); | 57 web_contents->GetController().Reload(true); |
| 58 return true; | 58 return true; |
| 59 } | 59 } |
| OLD | NEW |