Index: chrome/test/ppapi/ppapi_test.cc |
diff --git a/chrome/test/ppapi/ppapi_test.cc b/chrome/test/ppapi/ppapi_test.cc |
index 70a5bc1606df8b425fd5aff0f2db8c5ffcbf98b0..8da58e621beafe288c312491f527bcd647d9dc46 100644 |
--- a/chrome/test/ppapi/ppapi_test.cc |
+++ b/chrome/test/ppapi/ppapi_test.cc |
@@ -12,7 +12,6 @@ |
#include "chrome/browser/chrome_notification_types.h" |
#include "chrome/browser/content_settings/host_content_settings_map.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/profiles/profile.h" |
#include "chrome/browser/ui/browser.h" |
@@ -21,6 +20,7 @@ |
#include "chrome/common/chrome_switches.h" |
#include "chrome/test/base/test_switches.h" |
#include "chrome/test/base/ui_test_utils.h" |
+#include "components/infobars/core/infobar.h" |
#include "components/nacl/common/nacl_switches.h" |
#include "content/public/browser/dom_operation_notification_details.h" |
#include "content/public/browser/notification_service.h" |
@@ -116,7 +116,7 @@ void PPAPITestBase::InfoBarObserver::VerifyInfoBarState() { |
return; |
expecting_infobar_ = false; |
- InfoBar* infobar = infobar_service->infobar_at(0); |
+ infobars::InfoBar* infobar = infobar_service->infobar_at(0); |
ConfirmInfoBarDelegate* delegate = |
infobar->delegate()->AsConfirmInfoBarDelegate(); |
ASSERT_TRUE(delegate != NULL); |