| Index: chrome/browser/download/download_browsertest.cc
|
| diff --git a/chrome/browser/download/download_browsertest.cc b/chrome/browser/download/download_browsertest.cc
|
| index 8eb596fa9d99adcc4c24d9940b9750b07ae0a049..17bcd366ba26e90ab68aa192106006053de03c1a 100644
|
| --- a/chrome/browser/download/download_browsertest.cc
|
| +++ b/chrome/browser/download/download_browsertest.cc
|
| @@ -43,7 +43,6 @@
|
| #include "chrome/browser/history/history_service.h"
|
| #include "chrome/browser/history/history_service_factory.h"
|
| #include "chrome/browser/infobars/confirm_infobar_delegate.h"
|
| -#include "chrome/browser/infobars/infobar.h"
|
| #include "chrome/browser/infobars/infobar_service.h"
|
| #include "chrome/browser/net/url_request_mock_util.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| @@ -63,6 +62,7 @@
|
| #include "chrome/test/base/in_process_browser_test.h"
|
| #include "chrome/test/base/test_switches.h"
|
| #include "chrome/test/base/ui_test_utils.h"
|
| +#include "components/infobars/core/infobar.h"
|
| #include "content/public/browser/download_interrupt_reasons.h"
|
| #include "content/public/browser/download_item.h"
|
| #include "content/public/browser/download_manager.h"
|
| @@ -2796,7 +2796,7 @@ IN_PROC_BROWSER_TEST_F(DownloadTest, TestMultipleDownloadsInfobar) {
|
| ASSERT_EQ(1u, infobar_service->infobar_count());
|
|
|
| // Get the infobar at index 0.
|
| - InfoBar* infobar = infobar_service->infobar_at(0);
|
| + infobars::InfoBar* infobar = infobar_service->infobar_at(0);
|
| ConfirmInfoBarDelegate* confirm_infobar =
|
| infobar->delegate()->AsConfirmInfoBarDelegate();
|
| ASSERT_TRUE(confirm_infobar != NULL);
|
|
|