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

Unified Diff: components/web_resource/promo_resource_service.h

Issue 1549993003: Switch to standard integer types in components/, part 4 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/web_resource/promo_resource_service.h
diff --git a/components/web_resource/promo_resource_service.h b/components/web_resource/promo_resource_service.h
index d36e07dd318a86ed1da2ebc39ad186eae5cf394d..438f0da50db412f2ff93049d561396f480e5369d 100644
--- a/components/web_resource/promo_resource_service.h
+++ b/components/web_resource/promo_resource_service.h
@@ -5,10 +5,13 @@
#ifndef COMPONENTS_WEB_RESOURCE_PROMO_RESOURCE_SERVICE_H_
#define COMPONENTS_WEB_RESOURCE_PROMO_RESOURCE_SERVICE_H_
+#include <stdint.h>
+
#include <string>
#include "base/callback_forward.h"
#include "base/callback_list.h"
+#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "components/web_resource/web_resource_service.h"
@@ -71,7 +74,7 @@ class PromoResourceService : public WebResourceService {
// If delay_ms is positive, schedule notification with the delay.
// If delay_ms is 0, notify immediately by calling WebResourceStateChange().
// If delay_ms is negative, do nothing.
- void PostNotification(int64 delay_ms);
+ void PostNotification(int64_t delay_ms);
// Notify listeners that the state of a web resource has changed.
void PromoResourceStateChange();
« no previous file with comments | « components/web_resource/notification_promo_mobile_ntp.h ('k') | components/web_resource/promo_resource_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698