| Index: chrome/browser/safe_browsing/client_side_detection_host_unittest.cc
|
| diff --git a/chrome/browser/safe_browsing/client_side_detection_host_unittest.cc b/chrome/browser/safe_browsing/client_side_detection_host_unittest.cc
|
| index 7460413f210acee588bcd859208cf3f624355b8b..92453f04ed34ea4dfb3abc036cdd1976f8a7858d 100644
|
| --- a/chrome/browser/safe_browsing/client_side_detection_host_unittest.cc
|
| +++ b/chrome/browser/safe_browsing/client_side_detection_host_unittest.cc
|
| @@ -47,7 +47,7 @@ using ::testing::NotNull;
|
| using ::testing::Pointee;
|
| using ::testing::Return;
|
| using ::testing::SaveArg;
|
| -using ::testing::SetArgumentPointee;
|
| +using ::testing::SetArgPointee;
|
| using ::testing::StrictMock;
|
| using content::BrowserThread;
|
| using content::RenderFrameHostTester;
|
| @@ -284,8 +284,8 @@ class ClientSideDetectionHostTest : public ChromeRenderViewHostTestHarness {
|
| }
|
| if (get_valid_cached_result) {
|
| EXPECT_CALL(*csd_service_, GetValidCachedResult(url, NotNull()))
|
| - .WillOnce(DoAll(SetArgumentPointee<1>(true),
|
| - Return(*get_valid_cached_result)));
|
| + .WillOnce(
|
| + DoAll(SetArgPointee<1>(true), Return(*get_valid_cached_result)));
|
| }
|
| if (is_in_cache) {
|
| EXPECT_CALL(*csd_service_, IsInCache(url)).WillOnce(Return(*is_in_cache));
|
|
|