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

Unified Diff: content/browser/push_messaging/push_messaging_router.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
« no previous file with comments | « content/browser/push_messaging/push_messaging_router.h ('k') | content/browser/quota/mock_quota_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/push_messaging/push_messaging_router.cc
diff --git a/content/browser/push_messaging/push_messaging_router.cc b/content/browser/push_messaging/push_messaging_router.cc
index 35147cf952a51c08f163661d5cf44fca8c0fa309..bc95216ad07698514323caf241f6a1542273660d 100644
--- a/content/browser/push_messaging/push_messaging_router.cc
+++ b/content/browser/push_messaging/push_messaging_router.cc
@@ -33,7 +33,7 @@ void RunDeliverCallback(
void PushMessagingRouter::DeliverMessage(
BrowserContext* browser_context,
const GURL& origin,
- int64 service_worker_registration_id,
+ int64_t service_worker_registration_id,
const std::string& data,
const DeliverMessageCallback& deliver_message_callback) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
@@ -52,7 +52,7 @@ void PushMessagingRouter::DeliverMessage(
// static
void PushMessagingRouter::FindServiceWorkerRegistration(
const GURL& origin,
- int64 service_worker_registration_id,
+ int64_t service_worker_registration_id,
const std::string& data,
const DeliverMessageCallback& deliver_message_callback,
scoped_refptr<ServiceWorkerContextWrapper> service_worker_context) {
« no previous file with comments | « content/browser/push_messaging/push_messaging_router.h ('k') | content/browser/quota/mock_quota_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698