Chromium Code Reviews| 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; |