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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-search-across-all-files.html

Issue 2867783003: DevTools: move IsolatedFileSystem/IsolatedFileSystemManager into persistence/ (Closed)
Patch Set: fix order Created 3 years, 7 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../inspector-test.js"></script> 3 <script src="../inspector-test.js"></script>
4 <script src="../debugger-test.js"></script> 4 <script src="../debugger-test.js"></script>
5 <script src="../search/search-test.js"></script> 5 <script src="../search/search-test.js"></script>
6 <script src="../isolated-filesystem-test.js"></script> 6 <script src="../isolated-filesystem-test.js"></script>
7 <script src="./persistence-test.js"></script> 7 <script src="./persistence-test.js"></script>
8 <script src="./resources/foo.js"></script> 8 <script src="./resources/foo.js"></script>
9 <script> 9 <script>
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 InspectorTest.runSearchAndDumpResults(scope, searchConfig, next); 42 InspectorTest.runSearchAndDumpResults(scope, searchConfig, next);
43 } 43 }
44 44
45 InspectorFrontendHost.searchInPath = function(requestId, path, query) 45 InspectorFrontendHost.searchInPath = function(requestId, path, query)
46 { 46 {
47 setTimeout(reply); 47 setTimeout(reply);
48 48
49 function reply() 49 function reply()
50 { 50 {
51 var paths = ["/var/www" + fsEntry.fullPath]; 51 var paths = ["/var/www" + fsEntry.fullPath];
52 Workspace.isolatedFileSystemManager._onSearchCompleted({data: {reque stId: requestId, fileSystemPath: path, files: paths}}); 52 Persistence.isolatedFileSystemManager._onSearchCompleted({data: {req uestId: requestId, fileSystemPath: path, files: paths}});
53 } 53 }
54 } 54 }
55 }; 55 };
56 </script> 56 </script>
57 </head> 57 </head>
58 <body onload="runTest()"> 58 <body onload="runTest()">
59 <p>Verify that search across all files omits filesystem uiSourceCodes with bindi ng to network.</p> 59 <p>Verify that search across all files omits filesystem uiSourceCodes with bindi ng to network.</p>
60 </body> 60 </body>
61 </html> 61 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698