diff options
Diffstat (limited to 'chrome/browser/safe_browsing/client_side_model_loader_unittest.cc')
| -rw-r--r-- | chrome/browser/safe_browsing/client_side_model_loader_unittest.cc | 5 |
1 files changed, 4 insertions, 1 deletions
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 4679b82..423e3c0 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: |
