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

Unified Diff: chrome/browser/chromeos/policy/affiliated_cloud_policy_invalidator.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/affiliated_cloud_policy_invalidator.h
diff --git a/chrome/browser/chromeos/policy/affiliated_cloud_policy_invalidator.h b/chrome/browser/chromeos/policy/affiliated_cloud_policy_invalidator.h
index 162f39b14e6d55a78efbe4fe0a1b5b15bd221139..9856d1171f855cd7a9d0d7a97662365a007b8dcf 100644
--- a/chrome/browser/chromeos/policy/affiliated_cloud_policy_invalidator.h
+++ b/chrome/browser/chromeos/policy/affiliated_cloud_policy_invalidator.h
@@ -5,7 +5,8 @@
#ifndef CHROME_BROWSER_CHROMEOS_POLICY_AFFILIATED_CLOUD_POLICY_INVALIDATOR_H_
#define CHROME_BROWSER_CHROMEOS_POLICY_AFFILIATED_CLOUD_POLICY_INVALIDATOR_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/chromeos/policy/affiliated_invalidation_service_provider.h"
@@ -57,7 +58,7 @@ class AffiliatedCloudPolicyInvalidator
AffiliatedInvalidationServiceProvider* const invalidation_service_provider_;
// The highest invalidation version that was handled already.
- int64 highest_handled_invalidation_version_;
+ int64_t highest_handled_invalidation_version_;
// The current |CloudPolicyInvalidator|. nullptr if no connected invalidation
// service is available.

Powered by Google App Engine
This is Rietveld 408576698