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

Side by Side Diff: content/browser/appcache/appcache_storage_impl_unittest.cc

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 <stack> 5 #include <stack>
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/callback.h" 9 #include "base/callback.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
(...skipping 14 matching lines...) Expand all
25 #include "content/browser/appcache/appcache_storage_impl.h" 25 #include "content/browser/appcache/appcache_storage_impl.h"
26 #include "net/base/net_errors.h" 26 #include "net/base/net_errors.h"
27 #include "net/base/request_priority.h" 27 #include "net/base/request_priority.h"
28 #include "net/http/http_response_headers.h" 28 #include "net/http/http_response_headers.h"
29 #include "net/url_request/url_request_error_job.h" 29 #include "net/url_request/url_request_error_job.h"
30 #include "net/url_request/url_request_job_factory_impl.h" 30 #include "net/url_request/url_request_job_factory_impl.h"
31 #include "net/url_request/url_request_test_job.h" 31 #include "net/url_request/url_request_test_job.h"
32 #include "net/url_request/url_request_test_util.h" 32 #include "net/url_request/url_request_test_util.h"
33 #include "sql/test/test_helpers.h" 33 #include "sql/test/test_helpers.h"
34 #include "testing/gtest/include/gtest/gtest.h" 34 #include "testing/gtest/include/gtest/gtest.h"
35 #include "webkit/browser/quota/quota_manager.h" 35 #include "storage/browser/quota/quota_manager.h"
36 36
37 namespace content { 37 namespace content {
38 38
39 namespace { 39 namespace {
40 40
41 const base::Time kZeroTime; 41 const base::Time kZeroTime;
42 const GURL kManifestUrl("http://blah/manifest"); 42 const GURL kManifestUrl("http://blah/manifest");
43 const GURL kManifestUrl2("http://blah/manifest2"); 43 const GURL kManifestUrl2("http://blah/manifest2");
44 const GURL kManifestUrl3("http://blah/manifest3"); 44 const GURL kManifestUrl3("http://blah/manifest3");
45 const GURL kEntryUrl("http://blah/entry"); 45 const GURL kEntryUrl("http://blah/entry");
(...skipping 1972 matching lines...) Expand 10 before | Expand all | Expand 10 after
2018 RunTestOnIOThread(&AppCacheStorageImplTest::Reinitialize2); 2018 RunTestOnIOThread(&AppCacheStorageImplTest::Reinitialize2);
2019 } 2019 }
2020 2020
2021 TEST_F(AppCacheStorageImplTest, Reinitialize3) { 2021 TEST_F(AppCacheStorageImplTest, Reinitialize3) {
2022 RunTestOnIOThread(&AppCacheStorageImplTest::Reinitialize3); 2022 RunTestOnIOThread(&AppCacheStorageImplTest::Reinitialize3);
2023 } 2023 }
2024 2024
2025 // That's all folks! 2025 // That's all folks!
2026 2026
2027 } // namespace content 2027 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/appcache/appcache_storage_impl.cc ('k') | content/browser/appcache/chrome_appcache_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698