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

Unified Diff: components/data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate.h

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.h
diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate.h b/components/data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate.h
index 94f10b6d7e6c4af522e63efa33205b27bffe27a7..e1ce53699cc652d8862db7c4e08e23bfdc5a78ef 100644
--- a/components/data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate.h
+++ b/components/data_reduction_proxy/core/common/data_reduction_proxy_event_storage_delegate.h
@@ -5,7 +5,8 @@
#ifndef COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_EVENT_STORAGE_DELEGATE_H_
#define COMPONENTS_DATA_REDUCTION_PROXY_CORE_COMMON_DATA_REDUCTION_PROXY_EVENT_STORAGE_DELEGATE_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/memory/scoped_ptr.h"
namespace base {
@@ -32,7 +33,7 @@ class DataReductionProxyEventStorageDelegate {
// Stores a DATA_REDUCTION_PROXY_BYPASS_REQUESTED event.
virtual void AddAndSetLastBypassEvent(scoped_ptr<base::Value> event,
- int64 expiration_ticks) = 0;
+ int64_t expiration_ticks) = 0;
// Stores a DATA_REDUCTION_PROXY_CANARY_REQUEST event.
virtual void AddEventAndSecureProxyCheckState(

Powered by Google App Engine
This is Rietveld 408576698