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

Unified Diff: chrome/browser/chromeos/policy/heartbeat_scheduler.h

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (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/chromeos/policy/heartbeat_scheduler.h
diff --git a/chrome/browser/chromeos/policy/heartbeat_scheduler.h b/chrome/browser/chromeos/policy/heartbeat_scheduler.h
index 1b46709f0cf74c1e7ee4e67ba2e8bb353da2a991..a4478506cca38d91df00797ef9c0cc582654e874 100644
--- a/chrome/browser/chromeos/policy/heartbeat_scheduler.h
+++ b/chrome/browser/chromeos/policy/heartbeat_scheduler.h
@@ -5,9 +5,10 @@
#ifndef CHROME_BROWSER_CHROMEOS_POLICY_HEARTBEAT_SCHEDULER_H_
#define CHROME_BROWSER_CHROMEOS_POLICY_HEARTBEAT_SCHEDULER_H_
+#include <stdint.h>
+
#include <string>
-#include "base/basictypes.h"
#include "base/cancelable_callback.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
@@ -38,7 +39,7 @@ class HeartbeatScheduler : public gcm::GCMAppHandler,
gcm::GCMConnectionObserver {
public:
// Default interval for how often we send up a heartbeat.
- static const int64 kDefaultHeartbeatIntervalMs;
+ static const int64_t kDefaultHeartbeatIntervalMs;
// Constructor. |cloud_policy_client| will be used to send registered GCM id
// to DM server, and can be null. |driver| can be null for tests.
« no previous file with comments | « chrome/browser/chromeos/policy/enterprise_install_attributes.cc ('k') | chrome/browser/chromeos/policy/heartbeat_scheduler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698