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

Unified Diff: chrome/views/grid_layout_unittest.cc

Issue 42013: Slight code change to make some global variables const. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 9 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/views/grid_layout.h ('k') | chrome/views/label.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/views/grid_layout_unittest.cc
===================================================================
--- chrome/views/grid_layout_unittest.cc (revision 11293)
+++ chrome/views/grid_layout_unittest.cc (working copy)
@@ -387,9 +387,11 @@
for (int i = 0; i < column_count; ++i) {
for (int row = 0; row < row_count; ++row) {
View* view = host.GetChildViewAt(row * column_count + i);
- ExpectViewBoundsEquals(2 + title_width * i + (title_width - pref_width) / 2,
- 2 + pref_height * row,
- pref_width, pref_height, view);
+ ExpectViewBoundsEquals(
+ 2 + title_width * i + (title_width - pref_width) / 2,
+ 2 + pref_height * row,
+ pref_width,
+ pref_height, view);
}
}
« no previous file with comments | « chrome/views/grid_layout.h ('k') | chrome/views/label.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698