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

Unified Diff: chrome/browser/policy/profile_policy_connector.cc

Issue 7054022: Use int64 instead of int for cloud policy infrastructure-delay. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 months 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 | « chrome/browser/policy/profile_policy_connector.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/policy/profile_policy_connector.cc
diff --git a/chrome/browser/policy/profile_policy_connector.cc b/chrome/browser/policy/profile_policy_connector.cc
index ead2601720ccc3a3f2813baaf82de36a7e1d4490..f0281228d94617ca797faee41e6893a9c1822d5b 100644
--- a/chrome/browser/policy/profile_policy_connector.cc
+++ b/chrome/browser/policy/profile_policy_connector.cc
@@ -24,7 +24,7 @@ const FilePath::CharType kPolicyDir[] = FILE_PATH_LITERAL("Device Management");
const FilePath::CharType kTokenCacheFile[] = FILE_PATH_LITERAL("Token");
const FilePath::CharType kPolicyCacheFile[] = FILE_PATH_LITERAL("Policy");
-const int kServiceInitializationStartupDelay = 2000;
+const int64 kServiceInitializationStartupDelay = 2000;
} // namespace
@@ -64,7 +64,7 @@ ProfilePolicyConnector::~ProfilePolicyConnector() {
}
void ProfilePolicyConnector::ScheduleServiceInitialization(
- int delay_milliseconds) {
+ int64 delay_milliseconds) {
if (cloud_policy_subsystem_.get())
cloud_policy_subsystem_->ScheduleServiceInitialization(delay_milliseconds);
}
« no previous file with comments | « chrome/browser/policy/profile_policy_connector.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698