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

Unified Diff: chrome/browser/chromeos/cros/burn_library.h

Issue 7477008: Remove explicit keyword from multi-argument constructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 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/browser_main.cc ('k') | chrome/browser/chromeos/cros/network_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/burn_library.h
diff --git a/chrome/browser/chromeos/cros/burn_library.h b/chrome/browser/chromeos/cros/burn_library.h
index b444037f17b53085e1df9797dfb006783f2a3851..8130f84767630d7a3623b52208dec73fbf27fa04 100644
--- a/chrome/browser/chromeos/cros/burn_library.h
+++ b/chrome/browser/chromeos/cros/burn_library.h
@@ -24,16 +24,15 @@ struct ImageBurnStatus {
}
explicit ImageBurnStatus(const chromeos::BurnStatus& status)
- : amount_burnt(status.amount_burnt),
- total_size(status.total_size) {
+ : amount_burnt(status.amount_burnt), total_size(status.total_size) {
if (status.target_path)
target_path = status.target_path;
if (status.error)
error = status.error;
}
- explicit ImageBurnStatus(const char* path, int64 burnt, int64 total,
- const char* err) : total_size(total) {
+ ImageBurnStatus(const char* path, int64 burnt, int64 total, const char* err)
+ : total_size(total) {
if (path)
target_path = path;
if (err)
« no previous file with comments | « chrome/browser/browser_main.cc ('k') | chrome/browser/chromeos/cros/network_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698