| 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 4e32b241f44ee01f81d076b67d3b7727970a7c95..f3f06cdb920c427d503b04eac9a5cca1044b3301 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_blocking_page_unittest.cc
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_blocking_page_unittest.cc
|
| @@ -166,14 +166,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();
|
| }
|
| @@ -579,8 +579,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();
|
|
|