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

Side by Side Diff: chrome/browser/profile_resetter/profile_resetter_browsertest.cc

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/browser/profile_resetter/profile_resetter.h ('k') | chrome/browser/profile_resetter/profile_resetter_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698