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

Unified Diff: third_party/WebKit/LayoutTests/inspector/local-object-properties-section.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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/local-object-properties-section.html
diff --git a/third_party/WebKit/LayoutTests/inspector/local-object-properties-section.html b/third_party/WebKit/LayoutTests/inspector/local-object-properties-section.html
index d2d9d4a23d519f13102b5a4eb9f1906a6aeb55fc..2db54ad6256756b118c2d871306abb071ae594d4 100644
--- a/third_party/WebKit/LayoutTests/inspector/local-object-properties-section.html
+++ b/third_party/WebKit/LayoutTests/inspector/local-object-properties-section.html
@@ -9,9 +9,9 @@ function test()
for (var i = 1000; i < 1256; ++i)
d.push(i);
var object = {a: "b", c: d};
- var localObject = WebInspector.RemoteObject.fromLocalObject(object);
+ var localObject = SDK.RemoteObject.fromLocalObject(object);
- var propertiesSection = new WebInspector.ObjectPropertiesSection(localObject, "local object");
+ var propertiesSection = new Components.ObjectPropertiesSection(localObject, "local object");
propertiesSection.expand();
propertiesSection.objectTreeElement().childAt(1).expand();

Powered by Google App Engine
This is Rietveld 408576698