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

Unified Diff: content/renderer/disambiguation_popup_helper.cc

Issue 11740038: Cleanup: Fix some lint errors in content/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 12 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: content/renderer/disambiguation_popup_helper.cc
===================================================================
--- content/renderer/disambiguation_popup_helper.cc (revision 175088)
+++ content/renderer/disambiguation_popup_helper.cc (working copy)
@@ -32,7 +32,7 @@
float FindOptimalScaleFactor(const WebVector<WebRect>& target_rects) {
using std::min;
using std::max;
- if (!target_rects.size()) // shall never reach
+ if (!target_rects.size()) // shall never reach
return kDisambiguationPopupMinScale;
int smallest_target = min(target_rects[0].width, target_rects[0].height);
for (size_t i = 1; i < target_rects.size(); i++) {
@@ -81,7 +81,7 @@
top + bottom);
}
-} // unnamed namespace
+} // namespace
namespace content {
@@ -103,4 +103,4 @@
return scale;
}
-} // namespace content
+} // namespace content
« no previous file with comments | « content/renderer/disambiguation_popup_helper.h ('k') | content/renderer/disambiguation_popup_helper_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698