| Index: chrome/browser/safe_browsing/client_side_model_loader_unittest.cc
|
| diff --git a/chrome/browser/safe_browsing/client_side_model_loader_unittest.cc b/chrome/browser/safe_browsing/client_side_model_loader_unittest.cc
|
| index 4679b82f317e2d10cd1f14c7fee3077909301f84..423e3c08d2c0d3f2a212d8d3d54da864fc3228e1 100644
|
| --- a/chrome/browser/safe_browsing/client_side_model_loader_unittest.cc
|
| +++ b/chrome/browser/safe_browsing/client_side_model_loader_unittest.cc
|
| @@ -2,10 +2,13 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <map>
|
| #include <string>
|
|
|
| #include "base/callback.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/metrics/field_trial.h"
|
| #include "base/run_loop.h"
|
| @@ -38,7 +41,7 @@ class MockModelLoader : public ModelLoader {
|
| : ModelLoader(update_renderers_callback, model_name) {}
|
| ~MockModelLoader() override {}
|
|
|
| - MOCK_METHOD1(ScheduleFetch, void(int64));
|
| + MOCK_METHOD1(ScheduleFetch, void(int64_t));
|
| MOCK_METHOD2(EndFetch, void(ClientModelStatus, base::TimeDelta));
|
|
|
| private:
|
|
|