/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorFrontendHost.h | 46 class InspectorFrontendHost : public RefCounted<InspectorFrontendHost>, public ScriptWrappable { 48 static PassRefPtr<InspectorFrontendHost> create(InspectorFrontendClient* client, Page* frontendPage) 50 return adoptRef(new InspectorFrontendHost(client, frontendPage)); 53 ~InspectorFrontendHost(); 78 InspectorFrontendHost(InspectorFrontendClient* client, Page* frontendPage);
|
InspectorFrontendHost.cpp | 31 #include "core/inspector/InspectorFrontendHost.h" 60 static PassRefPtr<FrontendMenuProvider> create(InspectorFrontendHost* frontendHost, ScriptObject frontendApiObject, const Vector<ContextMenuItem>& items) 72 FrontendMenuProvider(InspectorFrontendHost* frontendHost, ScriptObject frontendApiObject, const Vector<ContextMenuItem>& items) 113 InspectorFrontendHost* m_frontendHost; 118 InspectorFrontendHost::InspectorFrontendHost(InspectorFrontendClient* client, Page* frontendPage) 126 InspectorFrontendHost::~InspectorFrontendHost() 131 void InspectorFrontendHost::disconnectClient() 139 void InspectorFrontendHost::setZoomFactor(float zoom [all...] |
InspectorFrontendHost.idl | 35 ] interface InspectorFrontendHost {
|
/external/chromium_org/third_party/WebKit/Source/core/testing/ |
InspectorFrontendClientLocal.h | 44 class InspectorFrontendHost; 66 RefPtr<InspectorFrontendHost> m_frontendHost;
|
InspectorFrontendClientLocal.cpp | 37 #include "core/inspector/InspectorFrontendHost.h" 119 m_frontendHost = InspectorFrontendHost::create(this, m_frontendPage); 120 ScriptGlobalObject::set(frontendScriptState, "InspectorFrontendHost", m_frontendHost.get());
|
/external/chromium_org/third_party/WebKit/Source/web/ |
InspectorFrontendClientImpl.h | 38 class InspectorFrontendHost; 67 RefPtr<WebCore::InspectorFrontendHost> m_frontendHost;
|
InspectorFrontendClientImpl.cpp | 39 #include "core/inspector/InspectorFrontendHost.h" 72 m_frontendHost = InspectorFrontendHost::create(this, m_frontendPage); 76 global->Set(v8::String::NewFromUtf8(isolate, "InspectorFrontendHost"), frontendHostObj); 93 "})(InspectorFrontendHost," 108 "InspectorFrontendHost.canInspectWorkers = function() { return true; };" 109 "InspectorFrontendHost.canSaveAs = function() { return true; };" 110 "InspectorFrontendHost.canSave = function() { return true; };" 111 "InspectorFrontendHost.supportsFileSystems = function() { return true; };" 112 "InspectorFrontendHost.loaded = function() {};" 113 "InspectorFrontendHost.hiddenPanels = function() { return ""; }; [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
ScriptObject.h | 40 class InspectorFrontendHost; 58 static bool set(ScriptState*, const char* name, InspectorFrontendHost*);
|
ScriptObject.cpp | 61 bool ScriptGlobalObject::set(ScriptState* scriptState, const char* name, InspectorFrontendHost* value)
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
InspectorFrontendHostStub.js | 41 InspectorFrontendHost._callbacks[callId] = callback; 47 InspectorFrontendHost.sendMessageToEmbedder(JSON.stringify(message)); 50 if (!window.InspectorFrontendHost) { 229 InspectorFrontendHost = new WebInspector.InspectorFrontendHostStub(); 231 } else if (InspectorFrontendHost.sendMessageToEmbedder) { 234 InspectorFrontendHost._callbacks = []; 240 InspectorFrontendHost.embedderMessageAck = function(id, error) 242 var callback = InspectorFrontendHost._callbacks[id]; 243 delete InspectorFrontendHost._callbacks[id]; 266 InspectorFrontendHost[methodList[i]] = dispatchMethodByName.bind(null, methodList[i]) [all...] |
TestController.js | 33 if (!InspectorFrontendHost.isUnderTest())
|
FileManager.js | 68 InspectorFrontendHost.save(url, content, forceSaveAs); 119 InspectorFrontendHost.append(url, content); 127 InspectorFrontendHost.close(url);
|
IsolatedFileSystemManager.js | 69 return InspectorFrontendHost.supportsFileSystems(); 75 InspectorFrontendHost.requestFileSystems(); 80 InspectorFrontendHost.addFileSystem(); 88 InspectorFrontendHost.removeFileSystem(fileSystemPath); 178 if (!InspectorFrontendHost.isolatedFileSystem) 180 return InspectorFrontendHost.isolatedFileSystem(fileSystem.name(), fileSystem.rootURL());
|
UserMetrics.js | 44 InspectorFrontendHost.recordSettingChanged(trueCode); 46 InspectorFrontendHost.recordSettingChanged(falseCode); 111 InspectorFrontendHost.recordPanelShown(WebInspector.UserMetrics._PanelCodes[panelName] || 0); 126 InspectorFrontendHost.recordActionTaken(this._actionCode);
|
ImageView.js | 143 InspectorFrontendHost.copyText(this._imagePreviewElement.src); 148 InspectorFrontendHost.copyText(this.resource.url); 153 InspectorFrontendHost.openInNewTab(this.resource.url);
|
HandlerRegistry.js | 122 contextMenu.appendItem(WebInspector.copyLinkAddressLabel(), InspectorFrontendHost.copyText.bind(InspectorFrontendHost, contentProvider.contentURL())); 185 contextMenu.appendItem(WebInspector.copyLinkAddressLabel(), InspectorFrontendHost.copyText.bind(InspectorFrontendHost, resourceURL));
|
inspector.js | 178 InspectorFrontendHost.setZoomFactor(this.zoomFactor()); 231 if (!InspectorFrontendHost.sendMessageToEmbedder) { 262 InspectorFrontendHost.sendMessageToBackend = WebInspector.socket.send.bind(WebInspector.socket); 275 if (InspectorFrontendHost.isStub) { 470 InspectorFrontendHost.closeWindow(); 507 InspectorFrontendHost.openInNewTab(anchor.href); 530 InspectorFrontendHost.openInNewTab(resourceURL); 635 !InspectorFrontendHost.isStub; 721 InspectorFrontendHost.bringToFront(); [all...] |
DockController.js | 168 InspectorFrontendHost.requestSetDockSide(action);
|
FileSystemProjectDelegate.js | 293 InspectorFrontendHost.searchInPath(requestId, this._fileSystem.path(), query); 343 InspectorFrontendHost.indexPath(requestId, this._fileSystem.path()); 353 InspectorFrontendHost.stopIndexing(requestId);
|
InspectorFrontendAPI.js | 209 InspectorFrontendHost.embedderMessageAck(id, error);
|
ResourceWebSocketFrameView.js | 130 InspectorFrontendHost.copyText(row.data);
|
SoftContextMenu.js | 378 if (!InspectorFrontendHost.showContextMenu) { 380 InspectorFrontendHost.showContextMenu = function(event, items)
|
Workspace.js | 634 if (!InspectorFrontendHost.supportsFileSystems()) 657 if (!InspectorFrontendHost.supportsFileSystems())
|
CallStackSidebarPane.js | 226 InspectorFrontendHost.copyText(text);
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8InspectorFrontendHostCustom.cpp | 38 #include "core/inspector/InspectorFrontendHost.h" 121 InspectorFrontendHost* frontendHost = V8InspectorFrontendHost::toNative(info.Holder());
|