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

Unified Diff: content/public/test/cache_test_util.h

Issue 2827523003: Move BrowsingDataRemover to content/ (Closed)
Patch Set: Rebase over codereview.chromium.org/2815913005 Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/test/browsing_data_remover_test_util.cc ('k') | content/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/cache_test_util.h
diff --git a/content/public/test/cache_test_util.h b/content/public/test/cache_test_util.h
index 01e97da83a781221135c2b20f06e8abdc9b59a6f..53f001977d66b56ad93f6acaa85e7c0c32ebb474 100644
--- a/content/public/test/cache_test_util.h
+++ b/content/public/test/cache_test_util.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_BROWSING_DATA_CACHE_TEST_UTIL_H_
-#define CHROME_BROWSER_BROWSING_DATA_CACHE_TEST_UTIL_H_
+#ifndef CONTENT_BROWSER_BROWSING_DATA_CACHE_TEST_UTIL_H_
+#define CONTENT_BROWSER_BROWSING_DATA_CACHE_TEST_UTIL_H_
#include <set>
#include <vector>
@@ -17,7 +17,7 @@ namespace content {
// A util class that can be used to create and retreive cache entries.
class CacheTestUtil {
public:
- explicit CacheTestUtil(content::StoragePartition* partition_);
+ explicit CacheTestUtil(StoragePartition* partition_);
~CacheTestUtil();
@@ -25,7 +25,7 @@ class CacheTestUtil {
std::vector<std::string> GetEntryKeys();
- content::StoragePartition* partition() { return partition_; }
+ StoragePartition* partition() { return partition_; }
disk_cache::Backend* backend() { return backend_; }
private:
@@ -45,7 +45,7 @@ class CacheTestUtil {
base::Callback<void(int)> done_callback_;
- content::StoragePartition* partition_;
+ StoragePartition* partition_;
disk_cache::Backend* backend_ = nullptr;
std::vector<disk_cache::Entry*> entries_;
std::unique_ptr<disk_cache::Backend::Iterator> iterator_;
@@ -57,6 +57,6 @@ class CacheTestUtil {
int remaining_tasks_;
};
-} // namespace content
+} // content
-#endif // CHROME_BROWSER_BROWSING_DATA_CACHE_TEST_UTIL_H_
+#endif // CONTENT_BROWSER_BROWSING_DATA_CACHE_TEST_UTIL_H_
« no previous file with comments | « content/public/test/browsing_data_remover_test_util.cc ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698