| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/profile_resetter/profile_resetter.h" | 5 #include "chrome/browser/profile_resetter/profile_resetter.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "chrome/browser/profile_resetter/profile_resetter_test_base.h" | 8 #include "chrome/browser/profile_resetter/profile_resetter_test_base.h" |
| 9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
| 10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 void RemoveCookieTester::Notify() { | 148 void RemoveCookieTester::Notify() { |
| 149 DCHECK(waiting_callback_); | 149 DCHECK(waiting_callback_); |
| 150 waiting_callback_ = false; | 150 waiting_callback_ = false; |
| 151 if (runner_.get()) | 151 if (runner_.get()) |
| 152 runner_->Quit(); | 152 runner_->Quit(); |
| 153 } | 153 } |
| 154 | 154 |
| 155 class ProfileResetTest : public InProcessBrowserTest, | 155 class ProfileResetTest : public InProcessBrowserTest, |
| 156 public ProfileResetterTestBase { | 156 public ProfileResetterTestBase { |
| 157 protected: | 157 protected: |
| 158 virtual void SetUpOnMainThread() OVERRIDE { | 158 virtual void SetUpOnMainThread() override { |
| 159 resetter_.reset(new ProfileResetter(browser()->profile())); | 159 resetter_.reset(new ProfileResetter(browser()->profile())); |
| 160 } | 160 } |
| 161 }; | 161 }; |
| 162 | 162 |
| 163 | 163 |
| 164 IN_PROC_BROWSER_TEST_F(ProfileResetTest, ResetCookiesAndSiteData) { | 164 IN_PROC_BROWSER_TEST_F(ProfileResetTest, ResetCookiesAndSiteData) { |
| 165 RemoveCookieTester tester(browser()->profile()); | 165 RemoveCookieTester tester(browser()->profile()); |
| 166 tester.AddCookie(kCookieHostname, kCookieDefinition); | 166 tester.AddCookie(kCookieHostname, kCookieDefinition); |
| 167 ASSERT_EQ(kCookieDefinition, tester.GetCookie(kCookieHostname)); | 167 ASSERT_EQ(kCookieDefinition, tester.GetCookie(kCookieHostname)); |
| 168 | 168 |
| 169 ResetAndWait(ProfileResetter::COOKIES_AND_SITE_DATA); | 169 ResetAndWait(ProfileResetter::COOKIES_AND_SITE_DATA); |
| 170 | 170 |
| 171 EXPECT_EQ("", tester.GetCookie(kCookieHostname)); | 171 EXPECT_EQ("", tester.GetCookie(kCookieHostname)); |
| 172 } | 172 } |
| 173 | 173 |
| 174 } // namespace | 174 } // namespace |
| OLD | NEW |