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

Unified Diff: chrome/browser/net/url_fixer_upper.cc

Issue 274040: More style nits. (Closed)
Patch Set: Created 11 years, 2 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
Index: chrome/browser/net/url_fixer_upper.cc
diff --git a/chrome/browser/net/url_fixer_upper.cc b/chrome/browser/net/url_fixer_upper.cc
index b276e02db1fa2822850ae3ca2c1dcb49b5a27023..8aee9213937ffd99e9d032a30b0cc62d51b1b692 100644
--- a/chrome/browser/net/url_fixer_upper.cc
+++ b/chrome/browser/net/url_fixer_upper.cc
@@ -246,7 +246,7 @@ static void FixupPort(const string& text,
// Look for non-digit in port and strip if found.
string port(text, part.begin, part.len);
- for (string::iterator i = port.begin(); i != port.end(); ) {
+ for (string::iterator i = port.begin(); i != port.end();) {
if (IsAsciiDigit(*i))
++i;
else

Powered by Google App Engine
This is Rietveld 408576698