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

Unified Diff: chrome/browser/chromeos/policy/status_uploader.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/status_uploader.h
diff --git a/chrome/browser/chromeos/policy/status_uploader.h b/chrome/browser/chromeos/policy/status_uploader.h
index c202f3f5bee26d9b1d3c2fece49fd9d7b8d95861..907b7775de09e6b5bae5350218e4a81349724ba0 100644
--- a/chrome/browser/chromeos/policy/status_uploader.h
+++ b/chrome/browser/chromeos/policy/status_uploader.h
@@ -5,7 +5,10 @@
#ifndef CHROME_BROWSER_CHROMEOS_POLICY_STATUS_UPLOADER_H_
#define CHROME_BROWSER_CHROMEOS_POLICY_STATUS_UPLOADER_H_
+#include <stdint.h>
+
#include "base/cancelable_callback.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
@@ -29,7 +32,7 @@ class DeviceStatusCollector;
class StatusUploader : public MediaCaptureDevicesDispatcher::Observer {
public:
// Refresh constants.
- static const int64 kDefaultUploadDelayMs;
+ static const int64_t kDefaultUploadDelayMs;
// Constructor. |client| must be registered and must stay
// valid and registered through the lifetime of this StatusUploader

Powered by Google App Engine
This is Rietveld 408576698