| Index: chrome/browser/safe_browsing/safe_browsing_blocking_page_unittest.cc
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_blocking_page_unittest.cc b/chrome/browser/safe_browsing/safe_browsing_blocking_page_unittest.cc
|
| index 8fc2e798a3acf7d13c76cde2b5c8d94140125145..536953a5bcc56a381648b9fd31fb4e076962833b 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_blocking_page_unittest.cc
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_blocking_page_unittest.cc
|
| @@ -165,14 +165,14 @@ class SafeBrowsingBlockingPageTest : public ChromeRenderViewHostTestHarness {
|
|
|
| static void ProceedThroughInterstitial(
|
| SafeBrowsingBlockingPage* sb_interstitial) {
|
| - sb_interstitial->interstitial_page_->Proceed();
|
| + sb_interstitial->interstitial_page()->Proceed();
|
| // Proceed() posts a task to update the SafeBrowsingService::Client.
|
| base::RunLoop().RunUntilIdle();
|
| }
|
|
|
| static void DontProceedThroughInterstitial(
|
| SafeBrowsingBlockingPage* sb_interstitial) {
|
| - sb_interstitial->interstitial_page_->DontProceed();
|
| + sb_interstitial->interstitial_page()->DontProceed();
|
| // DontProceed() posts a task to update the SafeBrowsingService::Client.
|
| base::RunLoop().RunUntilIdle();
|
| }
|
| @@ -578,8 +578,8 @@ TEST_F(SafeBrowsingBlockingPageTest, ProceedThenDontProceed) {
|
|
|
| // Simulate the user clicking "proceed" then "don't proceed" (before the
|
| // interstitial is shown).
|
| - sb_interstitial->interstitial_page_->Proceed();
|
| - sb_interstitial->interstitial_page_->DontProceed();
|
| + sb_interstitial->interstitial_page()->Proceed();
|
| + sb_interstitial->interstitial_page()->DontProceed();
|
| // Proceed() and DontProceed() post a task to update the
|
| // SafeBrowsingService::Client.
|
| base::RunLoop().RunUntilIdle();
|
|
|