Index: chrome/browser/tab_contents/thumbnail_generator_unittest.cc |
diff --git a/chrome/browser/tab_contents/thumbnail_generator_unittest.cc b/chrome/browser/tab_contents/thumbnail_generator_unittest.cc |
index ecc632a243b23f0e163f2396b84ec259a19caf9d..73747c1265fec530fff0824642965c83dc25a838 100644 |
--- a/chrome/browser/tab_contents/thumbnail_generator_unittest.cc |
+++ b/chrome/browser/tab_contents/thumbnail_generator_unittest.cc |
@@ -338,12 +338,12 @@ TEST(ThumbnailGeneratorSimpleTest, ShouldUpdateThumbnail) { |
EXPECT_TRUE(ThumbnailGenerator::ShouldUpdateThumbnail( |
&profile, top_sites.get(), kGoodURL)); |
- // Should be false, if it's in the off-the-record mode. |
+ // Should be false, if it's in the incognito mode. |
profile.set_off_the_record(true); |
EXPECT_FALSE(ThumbnailGenerator::ShouldUpdateThumbnail( |
&profile, top_sites.get(), kGoodURL)); |
- // Should be true again, once turning off the off-the-record mode. |
+ // Should be true again, once turning off the incognito mode. |
profile.set_off_the_record(false); |
EXPECT_TRUE(ThumbnailGenerator::ShouldUpdateThumbnail( |
&profile, top_sites.get(), kGoodURL)); |