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

Unified Diff: chrome/browser/extensions/settings/settings_frontend.cc

Issue 10537037: Fix gcc 4.7 building problems - cont' (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 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 | « no previous file | content/content.gyp » ('j') | content/content.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/settings/settings_frontend.cc
diff --git a/chrome/browser/extensions/settings/settings_frontend.cc b/chrome/browser/extensions/settings/settings_frontend.cc
index 99d0441fc72ad6fdd8586199d477628bdbbee515..3cc29ca96d7422167ee4c3c1791f933d501541a8 100644
--- a/chrome/browser/extensions/settings/settings_frontend.cc
+++ b/chrome/browser/extensions/settings/settings_frontend.cc
@@ -91,9 +91,9 @@ void CallbackWithUnlimitedStorage(
SettingsStorageQuotaEnforcer::Limits GetLocalLimits() {
SettingsStorageQuotaEnforcer::Limits limits = {
- api::storage::local::QUOTA_BYTES,
- UINT_MAX,
- UINT_MAX
+ static_cast<size_t>(api::storage::local::QUOTA_BYTES),
+ static_cast<size_t>(UINT_MAX),
+ static_cast<size_t>(UINT_MAX)
};
return limits;
}
« no previous file with comments | « no previous file | content/content.gyp » ('j') | content/content.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698