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

Unified Diff: components/data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate_test_utils.cc

Issue 1546143002: Switch to standard integer types in components/, part 1 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: components/data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate_test_utils.cc
diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate_test_utils.cc b/components/data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate_test_utils.cc
index a916b78bab5028eccac37cd3f7e03a8fda2dae4f..2d8dfb657a92f721799f8349fb8770329b0b49a2 100644
--- a/components/data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate_test_utils.cc
+++ b/components/data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate_test_utils.cc
@@ -4,7 +4,6 @@
#include "components/data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate_test_utils.h"
-#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/values.h"
#include "components/data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate.h"
@@ -40,7 +39,7 @@ void TestDataReductionProxyEventStorageDelegate::AddEnabledEvent(
void TestDataReductionProxyEventStorageDelegate::AddAndSetLastBypassEvent(
scoped_ptr<base::Value> event,
- int64 expiration_ticks) {
+ int64_t expiration_ticks) {
if (delegate_)
delegate_->AddAndSetLastBypassEvent(event.Pass(), expiration_ticks);
}

Powered by Google App Engine
This is Rietveld 408576698