| Index: chrome/browser/android/vr_shell/textures/url_bar_texture_unittest.cc
|
| diff --git a/chrome/browser/android/vr_shell/textures/url_bar_texture_unittest.cc b/chrome/browser/android/vr_shell/textures/url_bar_texture_unittest.cc
|
| index c65f45776abd1f307fb212f88b6f297c6d6c13a0..20df5908f0a0381b9b16456ba58d9833edf74682 100644
|
| --- a/chrome/browser/android/vr_shell/textures/url_bar_texture_unittest.cc
|
| +++ b/chrome/browser/android/vr_shell/textures/url_bar_texture_unittest.cc
|
| @@ -170,13 +170,13 @@ TEST_F(UrlEmphasisTest, DangerousHttpsHost) {
|
| EXPECT_CALL(mock_, SetColor(kDeemphasizedColor));
|
| EXPECT_CALL(mock_, ApplyColor(kEmphasizedColor, gfx::Range(8, 16)));
|
| EXPECT_CALL(mock_, ApplyColor(kWarningColor, gfx::Range(0, 5)));
|
| - EXPECT_CALL(mock_, ApplyStyle(gfx::TextStyle::DIAGONAL_STRIKE, true,
|
| - gfx::Range(0, 5)));
|
| + EXPECT_CALL(mock_,
|
| + ApplyStyle(gfx::TextStyle::STRIKE, true, gfx::Range(0, 5)));
|
| EXPECT_CALL(mock_, SetColor(kIncognitoDeemphasizedColor));
|
| EXPECT_CALL(mock_, ApplyColor(kIncognitoEmphasizedColor, gfx::Range(8, 16)));
|
| EXPECT_CALL(mock_, ApplyColor(kIncognitoWarningColor, gfx::Range(0, 5)));
|
| - EXPECT_CALL(mock_, ApplyStyle(gfx::TextStyle::DIAGONAL_STRIKE, true,
|
| - gfx::Range(0, 5)));
|
| + EXPECT_CALL(mock_,
|
| + ApplyStyle(gfx::TextStyle::STRIKE, true, gfx::Range(0, 5)));
|
| Verify("https://host.com/page", SecurityLevel::DANGEROUS,
|
| "https://host.com/page");
|
| }
|
|
|