Index: chrome/browser/ui/login/login_prompt.cc |
diff --git a/chrome/browser/ui/login/login_prompt.cc b/chrome/browser/ui/login/login_prompt.cc |
index cc9f890319449f031115a50668d1ecf4e495d303..0d2e198963f404ac6c1380fccf8a42b38b38f687 100644 |
--- a/chrome/browser/ui/login/login_prompt.cc |
+++ b/chrome/browser/ui/login/login_prompt.cc |
@@ -37,7 +37,7 @@ |
#include "ui/gfx/text_elider.h" |
#if defined(ENABLE_EXTENSIONS) |
-#include "extensions/browser/guest_view/guest_view_base.h" |
+#include "components/guest_view/browser/guest_view_base.h" |
#endif |
using autofill::PasswordForm; |
@@ -494,7 +494,7 @@ void ShowLoginPrompt(const GURL& request_url, |
#if defined(ENABLE_EXTENSIONS) |
// A WebContents in a <webview> (a GuestView type) does not have a password |
// manager, but still needs to be able to show login prompts. |
- if (extensions::GuestViewBase::FromWebContents(parent_contents)) { |
+ if (guestview::GuestViewBase::FromWebContents(parent_contents)) { |
handler->BuildViewForPasswordManager(nullptr, explanation); |
return; |
} |