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

Unified Diff: app/win_util.cc

Issue 173260: Some code style cleanup under src/app. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: comment line fix Created 11 years, 4 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 | « app/resource_bundle.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/win_util.cc
===================================================================
--- app/win_util.cc (revision 24065)
+++ app/win_util.cc (working copy)
@@ -243,14 +243,14 @@
const std::wstring all_ext = L"*.*";
const std::wstring all_desc = l10n_util::GetString(IDS_APP_SAVEAS_ALL_FILES);
- DCHECK(file_ext.size()>=ext_desc.size());
+ DCHECK(file_ext.size() >= ext_desc.size());
std::wstring result;
- for (size_t i=0; i<file_ext.size(); ++i) {
+ for (size_t i = 0; i < file_ext.size(); ++i) {
std::wstring ext = file_ext[i];
std::wstring desc;
- if (i<ext_desc.size())
+ if (i < ext_desc.size())
desc = ext_desc[i];
if (ext.empty()) {
« no previous file with comments | « app/resource_bundle.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698