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 <stddef.h> | 5 #include <stddef.h> |
6 #include <stdint.h> | 6 #include <stdint.h> |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 | 200 |
201 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorTest) { | 201 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorTest) { |
202 SimpleTest(GetTestUrl("indexeddb", "cursor_test.html")); | 202 SimpleTest(GetTestUrl("indexeddb", "cursor_test.html")); |
203 } | 203 } |
204 | 204 |
205 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorTestIncognito) { | 205 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorTestIncognito) { |
206 SimpleTest(GetTestUrl("indexeddb", "cursor_test.html"), | 206 SimpleTest(GetTestUrl("indexeddb", "cursor_test.html"), |
207 true /* incognito */); | 207 true /* incognito */); |
208 } | 208 } |
209 | 209 |
210 // crbug.com/513787 | 210 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorPrefetch) { |
211 #if defined(ANDROID) | |
212 #define MAYBE_CursorPrefetch DISABLED_CursorPrefetch | |
213 #else | |
214 #define MAYBE_CursorPrefetch CursorPrefetch | |
215 #endif | |
216 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, MAYBE_CursorPrefetch) { | |
217 SimpleTest(GetTestUrl("indexeddb", "cursor_prefetch.html")); | 211 SimpleTest(GetTestUrl("indexeddb", "cursor_prefetch.html")); |
218 } | 212 } |
219 | 213 |
220 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, IndexTest) { | 214 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, IndexTest) { |
221 SimpleTest(GetTestUrl("indexeddb", "index_test.html")); | 215 SimpleTest(GetTestUrl("indexeddb", "index_test.html")); |
222 } | 216 } |
223 | 217 |
224 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, KeyPathTest) { | 218 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, KeyPathTest) { |
225 SimpleTest(GetTestUrl("indexeddb", "key_path_test.html")); | 219 SimpleTest(GetTestUrl("indexeddb", "key_path_test.html")); |
226 } | 220 } |
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
860 command_line->AppendSwitch(switches::kSingleProcess); | 854 command_line->AppendSwitch(switches::kSingleProcess); |
861 } | 855 } |
862 }; | 856 }; |
863 | 857 |
864 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTestSingleProcess, | 858 IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTestSingleProcess, |
865 RenderThreadShutdownTest) { | 859 RenderThreadShutdownTest) { |
866 SimpleTest(GetTestUrl("indexeddb", "shutdown_with_requests.html")); | 860 SimpleTest(GetTestUrl("indexeddb", "shutdown_with_requests.html")); |
867 } | 861 } |
868 | 862 |
869 } // namespace content | 863 } // namespace content |
OLD | NEW |