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

Side by Side Diff: chrome/browser/browsing_data/browsing_data_remover_unittest.cc

Issue 238863005: Domain Reliability: Remove browsing data when requested. (Closed) Base URL: http://git.chromium.org/chromium/src.git@domrel_bakedin
Patch Set: rebase Created 6 years, 8 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/browsing_data/browsing_data_remover.h" 5 #include "chrome/browser/browsing_data/browsing_data_remover.h"
6 6
7 #include <set> 7 #include <set>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 1586 matching lines...) Expand 10 before | Expand all | Expand 10 after
1597 EXPECT_CALL(*cryptohome_client, TpmAttestationDeleteKeys(_, _, _, _)) 1597 EXPECT_CALL(*cryptohome_client, TpmAttestationDeleteKeys(_, _, _, _))
1598 .WillOnce(WithArgs<3>(Invoke(FakeDBusCall))); 1598 .WillOnce(WithArgs<3>(Invoke(FakeDBusCall)));
1599 1599
1600 BlockUntilBrowsingDataRemoved( 1600 BlockUntilBrowsingDataRemoved(
1601 BrowsingDataRemover::EVERYTHING, 1601 BrowsingDataRemover::EVERYTHING,
1602 BrowsingDataRemover::REMOVE_CONTENT_LICENSES, false); 1602 BrowsingDataRemover::REMOVE_CONTENT_LICENSES, false);
1603 1603
1604 chromeos::DBusThreadManager::Shutdown(); 1604 chromeos::DBusThreadManager::Shutdown();
1605 } 1605 }
1606 #endif 1606 #endif
1607
1608 // TODO(ttuttle): Test ClearNetworkingHistorySince, or find someone else to.
Mike West 2014/04/25 07:17:31 Let's find someone else; that shouldn't be your jo
Deprecated (see juliatuttle) 2014/05/01 21:53:25 Done: http://crbug.com/369251
1609 // TODO(ttuttle): Test ClearDomainReliabilityBeacons.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698