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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sha1.html

Issue 2839273003: [Devtools] New structure and colorize rows for network products (Closed)
Patch Set: Merge remote-tracking branch 'origin/master' into NEW_DEPENDENCY_PRODUCTS Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector/sha1.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sha1.html b/third_party/WebKit/LayoutTests/inspector/sha1.html
index 8c0e2425a06adb099dd792fd030b4ed10cb8c12d..d018787230927c9bb8843da5107407de205341ec 100644
--- a/third_party/WebKit/LayoutTests/inspector/sha1.html
+++ b/third_party/WebKit/LayoutTests/inspector/sha1.html
@@ -5,18 +5,18 @@
<script>
function initialize_ProductRegistry() {
- InspectorTest.preloadModule('product_registry');
+ InspectorTest.preloadModule('product_registry_impl');
}
function test()
{
- InspectorTest.addResult('foobar : ' + ProductRegistry.sha1('foobar'));
- InspectorTest.addResult('hello : ' + ProductRegistry.sha1('hello'));
- InspectorTest.addResult('abcdefghijklmnopqrstuvwxyz : ' + ProductRegistry.sha1('abcdefghijklmnopqrstuvwxyz'));
- InspectorTest.addResult('ABCDEFGHIJKLMNOPQRSTUVWXYZ : ' + ProductRegistry.sha1('ABCDEFGHIJKLMNOPQRSTUVWXYZ'));
- InspectorTest.addResult('a : ' + ProductRegistry.sha1('a'));
- InspectorTest.addResult('A : ' + ProductRegistry.sha1('A'));
- InspectorTest.addResult('A1 : ' + ProductRegistry.sha1('A1'));
+ InspectorTest.addResult('foobar : ' + ProductRegistryImpl.sha1('foobar'));
+ InspectorTest.addResult('hello : ' + ProductRegistryImpl.sha1('hello'));
+ InspectorTest.addResult('abcdefghijklmnopqrstuvwxyz : ' + ProductRegistryImpl.sha1('abcdefghijklmnopqrstuvwxyz'));
+ InspectorTest.addResult('ABCDEFGHIJKLMNOPQRSTUVWXYZ : ' + ProductRegistryImpl.sha1('ABCDEFGHIJKLMNOPQRSTUVWXYZ'));
+ InspectorTest.addResult('a : ' + ProductRegistryImpl.sha1('a'));
+ InspectorTest.addResult('A : ' + ProductRegistryImpl.sha1('A'));
+ InspectorTest.addResult('A1 : ' + ProductRegistryImpl.sha1('A1'));
InspectorTest.completeTest();
}

Powered by Google App Engine
This is Rietveld 408576698