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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/NetworkManager.js

Issue 2419943003: DevTools: allow handing over the raw protocol connection to external clients and back. (Closed)
Patch Set: rebaselined Created 4 years, 2 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/Source/devtools/front_end/sdk/NetworkManager.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/NetworkManager.js b/third_party/WebKit/Source/devtools/front_end/sdk/NetworkManager.js
index 512dc3feab41faf9ed1eadb08edcea2e6b1d2acb..85a18879feeb15d80bf9a340985ea3b1b03a4971 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/NetworkManager.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/NetworkManager.js
@@ -146,14 +146,6 @@ WebInspector.NetworkManager.prototype = {
WebInspector.moduleSetting("cacheDisabled").removeChangeListener(this._cacheDisabledSettingChanged, this);
},
- /**
- * @return {!WebInspector.Setting}
- */
- bypassServiceWorkerSetting: function()
- {
- return this._bypassServiceWorkerSetting;
- },
-
_bypassServiceWorkerChanged: function()
{
this._networkAgent.setBypassServiceWorker(this._bypassServiceWorkerSetting.get());

Powered by Google App Engine
This is Rietveld 408576698