summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents
diff options
context:
space:
mode:
authorvipul.bhasin@gmail.com <vipul.bhasin@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-25 19:04:44 +0000
committervipul.bhasin@gmail.com <vipul.bhasin@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-25 19:04:44 +0000
commit5bb2f528d139fb38af6d620f2fa5ac718ce7d5d6 (patch)
tree89353a5372a514065e8e95eb7568dc6dbd658de3 /chrome/browser/tab_contents
parent620bd95cf67ce3e8acd20086ed3351ac18f01208 (diff)
downloadchromium_src-5bb2f528d139fb38af6d620f2fa5ac718ce7d5d6.zip
chromium_src-5bb2f528d139fb38af6d620f2fa5ac718ce7d5d6.tar.gz
chromium_src-5bb2f528d139fb38af6d620f2fa5ac718ce7d5d6.tar.bz2
Removing off the record references from TestingProfile and RenderMessageFilter.
BUG=3333 TEST=NONE Review URL: http://codereview.chromium.org/6683037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79432 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents')
-rw-r--r--chrome/browser/tab_contents/thumbnail_generator_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/tab_contents/thumbnail_generator_unittest.cc b/chrome/browser/tab_contents/thumbnail_generator_unittest.cc
index 3ae9ec1..adaa33e 100644
--- a/chrome/browser/tab_contents/thumbnail_generator_unittest.cc
+++ b/chrome/browser/tab_contents/thumbnail_generator_unittest.cc
@@ -339,12 +339,12 @@ TEST(ThumbnailGeneratorSimpleTest, ShouldUpdateThumbnail) {
&profile, top_sites.get(), kGoodURL));
// Should be false, if it's in the incognito mode.
- profile.set_off_the_record(true);
+ profile.set_incognito(true);
EXPECT_FALSE(ThumbnailGenerator::ShouldUpdateThumbnail(
&profile, top_sites.get(), kGoodURL));
// Should be true again, once turning off the incognito mode.
- profile.set_off_the_record(false);
+ profile.set_incognito(false);
EXPECT_TRUE(ThumbnailGenerator::ShouldUpdateThumbnail(
&profile, top_sites.get(), kGoodURL));