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

Unified Diff: chrome/app/google_update_client.cc

Issue 9662: fix minor style nit (Closed)
Patch Set: Created 12 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/google_update_client.cc
diff --git a/chrome/app/google_update_client.cc b/chrome/app/google_update_client.cc
index aa12dad76930224de244788d8974cfdad2ec4d93..1c8c2dfe5d2c592b2afe66b626e4a8a97be2ef3a 100755
--- a/chrome/app/google_update_client.cc
+++ b/chrome/app/google_update_client.cc
@@ -117,8 +117,7 @@ bool GoogleUpdateClient::Init(const wchar_t* client_guid,
ret = true;
} else {
std::wstring key(google_update::kRegPathClients);
- key.append(L"\\");
- key.append(guid_);
+ key.append(L"\\" + guid_);
if (client_util::GetChromiumVersion(dll_path_, key.c_str(), &version_))
ret = true;
}
@@ -130,4 +129,3 @@ bool GoogleUpdateClient::Init(const wchar_t* client_guid,
return ret;
}
} // namespace google_update
-
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698