Index: chrome/browser/resources/tracing/overlay_test.html |
diff --git a/chrome/browser/resources/tracing/overlay_test.html b/chrome/browser/resources/tracing/overlay_test.html |
index c06572ce9d8bb54d69a1172ebde5d484bddd8ef8..7dc7c79c1ecf66c60b55306e7c279fa25c4f382c 100644 |
--- a/chrome/browser/resources/tracing/overlay_test.html |
+++ b/chrome/browser/resources/tracing/overlay_test.html |
@@ -27,7 +27,7 @@ var sandbox = document.getElementById('sandbox'); |
var overlay; |
function testShowHideUnparented() { |
- overlay = new gpu.Overlay(); |
+ overlay = new tracing.Overlay(); |
overlay.innerHTML = |
'<h3>Hello</h3>B1:<button>foo</button></p>B2:<button>blah</button>'; |
overlay.visible = true; |
@@ -38,7 +38,7 @@ function testShowHideUnparented() { |
} |
function testShowHideParented() { |
- overlay = new gpu.Overlay(); |
+ overlay = new tracing.Overlay(); |
overlay.innerHTML = |
'<h3>Hello</h3>B1:<button>foo</button></p>B2:<button>blah</button>'; |
document.body.appendChild(overlay); |