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

Unified Diff: third_party/WebKit/Source/devtools/front_end/main/Main.js

Issue 2749423003: DevTools: launch What's New from experiments (Closed)
Patch Set: patched Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/help/module.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/main/Main.js
diff --git a/third_party/WebKit/Source/devtools/front_end/main/Main.js b/third_party/WebKit/Source/devtools/front_end/main/Main.js
index 0dc04d7b98465cf8340759cd69fc87a2b51b4098..a9086f795aff5c79cad969c94c758020612a2e74 100644
--- a/third_party/WebKit/Source/devtools/front_end/main/Main.js
+++ b/third_party/WebKit/Source/devtools/front_end/main/Main.js
@@ -105,7 +105,6 @@ Main.Main = class {
Runtime.experiments.register('objectPreviews', 'Object previews', true);
Runtime.experiments.register('persistence2', 'Persistence 2.0');
Runtime.experiments.register('persistenceValidation', 'Validate persistence bindings');
- Runtime.experiments.register('releaseNote', 'Release note', true);
Runtime.experiments.register('requestBlocking', 'Request blocking', true);
Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Timeline', true);
Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes on Timeline', true);
@@ -130,8 +129,6 @@ Main.Main = class {
Runtime.experiments.enableForTest('cssTrackerPanel');
if (testPath.indexOf('audits2/') !== -1)
Runtime.experiments.enableForTest('audits2');
- if (testPath.indexOf('help/') !== -1)
- Runtime.experiments.enableForTest('releaseNote');
if (testPath.indexOf('sass/') !== -1)
Runtime.experiments.enableForTest('liveSASS');
}
@@ -744,8 +741,7 @@ Main.Main.MainMenuItem = class {
var helpSubMenu = contextMenu.namedSubMenu('mainMenuHelp');
helpSubMenu.appendAction('settings.documentation');
- if (Runtime.experiments.isEnabled('releaseNote'))
- helpSubMenu.appendItem('Release Notes', () => InspectorFrontendHost.openInNewTab(Help.latestReleaseNote().link));
+ helpSubMenu.appendItem('Release Notes', () => InspectorFrontendHost.openInNewTab(Help.latestReleaseNote().link));
contextMenu.show();
}
};
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/help/module.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698