OLD | NEW |
---|---|
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 Loading... | |
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. | |
OLD | NEW |