summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/inspector/InspectorFrontendHost.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/inspector/InspectorFrontendHost.idl')
-rw-r--r--chromium/third_party/WebKit/Source/core/inspector/InspectorFrontendHost.idl7
1 files changed, 2 insertions, 5 deletions
diff --git a/chromium/third_party/WebKit/Source/core/inspector/InspectorFrontendHost.idl b/chromium/third_party/WebKit/Source/core/inspector/InspectorFrontendHost.idl
index 467e7aa563e..058608a7114 100644
--- a/chromium/third_party/WebKit/Source/core/inspector/InspectorFrontendHost.idl
+++ b/chromium/third_party/WebKit/Source/core/inspector/InspectorFrontendHost.idl
@@ -33,8 +33,9 @@
[
NoInterfaceObject
] interface InspectorFrontendHost {
+ // FIXME: setZoomFactor is here only for old frontends. Remove in M38.
void setZoomFactor(float zoom);
- void inspectedURLChanged(DOMString newURL);
+ float zoomFactor();
void setInjectedScriptForOrigin(DOMString origin, DOMString script);
@@ -48,13 +49,9 @@
[Custom] void recordActionTaken(unsigned long actionCode);
[Custom] void recordPanelShown(unsigned long panelCode);
- [Custom] void recordSettingChanged(unsigned long settingChanged);
DOMString getSelectionBackgroundColor();
DOMString getSelectionForegroundColor();
- DOMFileSystem isolatedFileSystem(DOMString fileSystemId, DOMString registeredName);
- void upgradeDraggedFileSystemPermissions(DOMFileSystem domFileSystem);
-
boolean isUnderTest();
};