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

Side by Side Diff: content/browser/indexed_db/indexed_db_browsertest.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 (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 "base/bind.h" 5 #include "base/bind.h"
6 #include "base/command_line.h" 6 #include "base/command_line.h"
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/files/file.h" 8 #include "base/files/file.h"
9 #include "base/files/file_enumerator.h" 9 #include "base/files/file_enumerator.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 16 matching lines...) Expand all
27 #include "content/public/common/url_constants.h" 27 #include "content/public/common/url_constants.h"
28 #include "content/public/test/browser_test_utils.h" 28 #include "content/public/test/browser_test_utils.h"
29 #include "content/public/test/content_browser_test.h" 29 #include "content/public/test/content_browser_test.h"
30 #include "content/public/test/content_browser_test_utils.h" 30 #include "content/public/test/content_browser_test_utils.h"
31 #include "content/shell/browser/shell.h" 31 #include "content/shell/browser/shell.h"
32 #include "net/base/escape.h" 32 #include "net/base/escape.h"
33 #include "net/base/net_errors.h" 33 #include "net/base/net_errors.h"
34 #include "net/test/embedded_test_server/embedded_test_server.h" 34 #include "net/test/embedded_test_server/embedded_test_server.h"
35 #include "net/test/embedded_test_server/http_request.h" 35 #include "net/test/embedded_test_server/http_request.h"
36 #include "net/test/embedded_test_server/http_response.h" 36 #include "net/test/embedded_test_server/http_response.h"
37 #include "webkit/browser/database/database_util.h" 37 #include "storage/browser/database/database_util.h"
38 #include "webkit/browser/quota/quota_manager.h" 38 #include "storage/browser/quota/quota_manager.h"
39 39
40 using base::ASCIIToUTF16; 40 using base::ASCIIToUTF16;
41 using quota::QuotaManager; 41 using quota::QuotaManager;
42 using webkit_database::DatabaseUtil; 42 using webkit_database::DatabaseUtil;
43 43
44 namespace content { 44 namespace content {
45 45
46 // This browser test is aimed towards exercising the IndexedDB bindings and 46 // This browser test is aimed towards exercising the IndexedDB bindings and
47 // the actual implementation that lives in the browser side. 47 // the actual implementation that lives in the browser side.
48 class IndexedDBBrowserTest : public ContentBrowserTest { 48 class IndexedDBBrowserTest : public ContentBrowserTest {
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 command_line->AppendSwitch(switches::kSingleProcess); 727 command_line->AppendSwitch(switches::kSingleProcess);
728 } 728 }
729 }; 729 };
730 730
731 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTestSingleProcess, 731 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTestSingleProcess,
732 RenderThreadShutdownTest) { 732 RenderThreadShutdownTest) {
733 SimpleTest(GetTestUrl("indexeddb", "shutdown_with_requests.html")); 733 SimpleTest(GetTestUrl("indexeddb", "shutdown_with_requests.html"));
734 } 734 }
735 735
736 } // namespace content 736 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/indexed_db/indexed_db_blob_info.h ('k') | content/browser/indexed_db/indexed_db_callbacks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698