| 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/extensions/extension_browsing_data_api.h" | 5 #include "chrome/browser/extensions/api/browsingdata/browsing_data_api.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
| 12 #include "base/stringprintf.h" | 12 #include "base/stringprintf.h" |
| 13 #include "base/values.h" | 13 #include "base/values.h" |
| 14 #include "chrome/browser/browsing_data_remover.h" | 14 #include "chrome/browser/browsing_data_remover.h" |
| 15 #include "chrome/browser/extensions/extension_function_test_utils.h" | 15 #include "chrome/browser/extensions/extension_function_test_utils.h" |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 RunRemoveBrowsingDataFunctionAndCompareMask( | 130 RunRemoveBrowsingDataFunctionAndCompareMask( |
| 131 "localStorage", BrowsingDataRemover::REMOVE_LOCAL_STORAGE); | 131 "localStorage", BrowsingDataRemover::REMOVE_LOCAL_STORAGE); |
| 132 RunRemoveBrowsingDataFunctionAndCompareMask( | 132 RunRemoveBrowsingDataFunctionAndCompareMask( |
| 133 "originBoundCerts", BrowsingDataRemover::REMOVE_ORIGIN_BOUND_CERTS); | 133 "originBoundCerts", BrowsingDataRemover::REMOVE_ORIGIN_BOUND_CERTS); |
| 134 RunRemoveBrowsingDataFunctionAndCompareMask( | 134 RunRemoveBrowsingDataFunctionAndCompareMask( |
| 135 "passwords", BrowsingDataRemover::REMOVE_PASSWORDS); | 135 "passwords", BrowsingDataRemover::REMOVE_PASSWORDS); |
| 136 // We can't remove plugin data inside a test profile. | 136 // We can't remove plugin data inside a test profile. |
| 137 RunRemoveBrowsingDataFunctionAndCompareMask( | 137 RunRemoveBrowsingDataFunctionAndCompareMask( |
| 138 "webSQL", BrowsingDataRemover::REMOVE_WEBSQL); | 138 "webSQL", BrowsingDataRemover::REMOVE_WEBSQL); |
| 139 } | 139 } |
| OLD | NEW |