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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tabbed-pane-closeable-persistence.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/tabbed-pane-closeable-persistence.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tabbed-pane-closeable-persistence.html b/third_party/WebKit/LayoutTests/inspector/tabbed-pane-closeable-persistence.html
index 29325a07ccc515986c7c966486d70a6e42bdb64f..1ff2d0347c68db94d1239bd7e8a6123eb2335f5f 100644
--- a/third_party/WebKit/LayoutTests/inspector/tabbed-pane-closeable-persistence.html
+++ b/third_party/WebKit/LayoutTests/inspector/tabbed-pane-closeable-persistence.html
@@ -4,11 +4,11 @@
<script type="text/javascript">
var test = function()
{
- var tabbedLocation = WebInspector.viewManager.createTabbedLocation();
+ var tabbedLocation = UI.viewManager.createTabbedLocation();
logPersistenceSetting();
// Show a closeable tab.
- var sensors = new WebInspector.SimpleView("sensors");
+ var sensors = new UI.SimpleView("sensors");
sensors.isCloseable = function() { return true; }
tabbedLocation.showView(sensors);
logPersistenceSetting();
@@ -18,12 +18,12 @@ var test = function()
logPersistenceSetting();
// Show a permanent tab.
- var console = new WebInspector.SimpleView("console");
+ var console = new UI.SimpleView("console");
tabbedLocation.showView(console);
logPersistenceSetting();
// Show transient tab.
- var history = new WebInspector.SimpleView("history");
+ var history = new UI.SimpleView("history");
history.isTransient = function() { return true; }
tabbedLocation.showView(history);
logPersistenceSetting();

Powered by Google App Engine
This is Rietveld 408576698