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

Unified Diff: third_party/WebKit/LayoutTests/inspector/profiler/heap-snapshot-test.js

Issue 2623743002: DevTools: extract modules (non-extensions) (Closed)
Patch Set: rebaseline Created 3 years, 11 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/profiler/heap-snapshot-test.js
diff --git a/third_party/WebKit/LayoutTests/inspector/profiler/heap-snapshot-test.js b/third_party/WebKit/LayoutTests/inspector/profiler/heap-snapshot-test.js
index 11654b30a86b6989910f7bf5709d6958953c15a1..24685a88ddc522947a33d944dff8721ede7b9876 100644
--- a/third_party/WebKit/LayoutTests/inspector/profiler/heap-snapshot-test.js
+++ b/third_party/WebKit/LayoutTests/inspector/profiler/heap-snapshot-test.js
@@ -498,9 +498,9 @@ InspectorTest.checkArrayIsSorted = function(contents, sortType, sortOrder)
}
var acceptableComparisonResult;
- if (sortOrder === UI.DataGrid.Order.Ascending) {
+ if (sortOrder === DataGrid.DataGrid.Order.Ascending) {
acceptableComparisonResult = -1;
- } else if (sortOrder === UI.DataGrid.Order.Descending) {
+ } else if (sortOrder === DataGrid.DataGrid.Order.Descending) {
acceptableComparisonResult = 1;
} else {
InspectorTest.addResult("Invalid sort order: " + sortOrder);

Powered by Google App Engine
This is Rietveld 408576698