Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Unified Diff: chrome/browser/safe_browsing/client_side_model_loader_unittest.cc

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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:
« no previous file with comments | « chrome/browser/safe_browsing/client_side_model_loader.cc ('k') | chrome/browser/safe_browsing/download_feedback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698