| 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_
|
|
|