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

Unified Diff: components/autofill/core/common/save_password_progress_logger.cc

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month 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 | « chromeos/dbus/fake_auth_policy_client.cc ('k') | components/browser_sync/profile_sync_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/core/common/save_password_progress_logger.cc
diff --git a/components/autofill/core/common/save_password_progress_logger.cc b/components/autofill/core/common/save_password_progress_logger.cc
index 5a5fe7681c2b4ba8c802f8ac84132de4e72996b3..df033c146d6ca1c35762bca371c5a6090a635e41 100644
--- a/components/autofill/core/common/save_password_progress_logger.cc
+++ b/components/autofill/core/common/save_password_progress_logger.cc
@@ -113,8 +113,7 @@ void SavePasswordProgressLogger::LogNumber(
void SavePasswordProgressLogger::LogNumber(
SavePasswordProgressLogger::StringID label,
size_t unsigned_number) {
- int signed_number = checked_cast<int, size_t>(unsigned_number);
- LogNumber(label, signed_number);
+ LogNumber(label, checked_cast<int>(unsigned_number));
}
void SavePasswordProgressLogger::LogMessage(
« no previous file with comments | « chromeos/dbus/fake_auth_policy_client.cc ('k') | components/browser_sync/profile_sync_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698