| Index: chrome/browser/safe_browsing/safe_browsing_blocking_page.cc
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_blocking_page.cc b/chrome/browser/safe_browsing/safe_browsing_blocking_page.cc
|
| index 67f2cc4dd0b3e7f6a96a07e1f5f7ca75a267bf5f..6ee34a6d28658f92597d5a34d47287f7b327236c 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_blocking_page.cc
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_blocking_page.cc
|
| @@ -133,8 +133,9 @@ static base::LazyInstance<SafeBrowsingBlockingPageFactoryImpl>
|
| g_safe_browsing_blocking_page_factory_impl = LAZY_INSTANCE_INITIALIZER;
|
|
|
| // static
|
| -const void* SafeBrowsingBlockingPage::kTypeForTesting =
|
| - &SafeBrowsingBlockingPage::kTypeForTesting;
|
| +content::InterstitialPageDelegate::TypeID
|
| + SafeBrowsingBlockingPage::kTypeForTesting =
|
| + &SafeBrowsingBlockingPage::kTypeForTesting;
|
|
|
| SafeBrowsingBlockingPage::SafeBrowsingBlockingPage(
|
| SafeBrowsingUIManager* ui_manager,
|
| @@ -409,7 +410,8 @@ void SafeBrowsingBlockingPage::OnProceed() {
|
| blocking_page->Show();
|
| }
|
|
|
| -const void* SafeBrowsingBlockingPage::GetTypeForTesting() const {
|
| +content::InterstitialPageDelegate::TypeID
|
| +SafeBrowsingBlockingPage::GetTypeForTesting() const {
|
| return SafeBrowsingBlockingPage::kTypeForTesting;
|
| }
|
|
|
|
|