summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-30 00:44:55 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-30 00:44:55 +0000
commit8820a406b321d0f9ed21336fff78bceaa1d307b4 (patch)
tree680e70d30f54a2f0e93672d59829f841f62d8b04
parent1f0931ccac7ceb764014e2ee12f6b9a281edf4a5 (diff)
downloadchromium_src-8820a406b321d0f9ed21336fff78bceaa1d307b4.zip
chromium_src-8820a406b321d0f9ed21336fff78bceaa1d307b4.tar.gz
chromium_src-8820a406b321d0f9ed21336fff78bceaa1d307b4.tar.bz2
views: Fix comment pointing to app/gfx/ instead of ui/gfx.
BUG=72317 TEST=None R=sky@chromium.org Review URL: http://codereview.chromium.org/7284019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91068 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--views/controls/label_unittest.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/views/controls/label_unittest.cc b/views/controls/label_unittest.cc
index 4ca0740..358a136 100644
--- a/views/controls/label_unittest.cc
+++ b/views/controls/label_unittest.cc
@@ -214,7 +214,7 @@ TEST(LabelTest, MultiLineSizing) {
label.SizeToFit(required_width - 1);
int constrained_width = label.GetLocalBounds().width();
#if defined(OS_WIN)
- // Canvas::SizeStringInt (in app/gfx/canvas_linux.cc)
+ // Canvas::SizeStringInt (in ui/gfx/canvas_skia_linux.cc)
// has to be fixed to return the size that fits to given width/height.
EXPECT_LT(constrained_width, required_width);
#endif
@@ -229,7 +229,7 @@ TEST(LabelTest, MultiLineSizing) {
EXPECT_GT(required_height, kMinTextDimension);
int height_for_constrained_width = label.GetHeightForWidth(constrained_width);
#if defined(OS_WIN)
- // Canvas::SizeStringInt (in app/gfx/canvas_linux.cc)
+ // Canvas::SizeStringInt (in ui/gfx/canvas_skia_linux.cc)
// has to be fixed to return the size that fits to given width/height.
EXPECT_GT(height_for_constrained_width, required_height);
#endif
@@ -261,7 +261,7 @@ TEST(LabelTest, MultiLineSizing) {
// is shrunk.
int height1 = label.GetHeightForWidth(required_width_with_border - 1);
#if defined(OS_WIN)
- // Canvas::SizeStringInt (in app/gfx/canvas_linux.cc)
+ // Canvas::SizeStringInt (in ui/gfx/canvas_skia_linux.cc)
// has to be fixed to return the size that fits to given width/height.
EXPECT_GT(height1, required_height_with_border);
#endif