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

Unified Diff: third_party/WebKit/Source/devtools/front_end/extensions/ExtensionServer.js

Issue 1867523002: Rename ignore_cache and ignoreCache to bypass* unless it affects API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/extensions/ExtensionServer.js
diff --git a/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionServer.js b/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionServer.js
index bfeb759389c496ab8563a8ad231a12065eeb9ff6..16b19453d5efe916df13f3e2c944adb73b67e52f 100644
--- a/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionServer.js
+++ b/third_party/WebKit/Source/devtools/front_end/extensions/ExtensionServer.js
@@ -429,6 +429,8 @@ WebInspector.ExtensionServer.prototype = {
var injectedScript;
if (options.injectedScript)
injectedScript = "(function(){" + options.injectedScript + "})()";
+ // TODO(toyoshim): Check if this ignoreCache shouldn't be changed for
dgozman 2016/04/06 15:44:19 This is a public API.
Takashi Toyoshima 2016/04/08 04:50:55 Acknowledged.
+ // DevTools protocol.
WebInspector.targetManager.reloadPage(!!options.ignoreCache, injectedScript);
return this._status.OK();
},
@@ -1087,4 +1089,4 @@ WebInspector.extensionAPI = {};
defineCommonExtensionSymbols(WebInspector.extensionAPI);
/** @type {!WebInspector.ExtensionServer} */
-WebInspector.extensionServer;
+WebInspector.extensionServer;

Powered by Google App Engine
This is Rietveld 408576698