OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InspectorFrontendHost
(Results
1 - 25
of
125
) sorted by null
1
2
3
4
5
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
InspectorFrontendHostFileSystem.h
14
class
InspectorFrontendHost
;
18
static DOMFileSystem* isolatedFileSystem(
InspectorFrontendHost
&, const String& fileSystemName, const String& rootURL);
19
static void upgradeDraggedFileSystemPermissions(
InspectorFrontendHost
&, DOMFileSystem*);
InspectorFrontendHostFileSystem.cpp
10
#include "core/inspector/
InspectorFrontendHost
.h"
17
DOMFileSystem* InspectorFrontendHostFileSystem::isolatedFileSystem(
InspectorFrontendHost
& host, const String& fileSystemName, const String& rootURL)
23
void InspectorFrontendHostFileSystem::upgradeDraggedFileSystemPermissions(
InspectorFrontendHost
& host, DOMFileSystem* domFileSystem)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorFrontendHost.h
45
class
InspectorFrontendHost
: public RefCountedWillBeGarbageCollectedFinalized<
InspectorFrontendHost
>, public ScriptWrappable {
48
static PassRefPtrWillBeRawPtr<
InspectorFrontendHost
> create(InspectorFrontendClient* client, Page* frontendPage)
50
return adoptRefWillBeNoop(new
InspectorFrontendHost
(client, frontendPage));
53
~
InspectorFrontendHost
();
80
InspectorFrontendHost
(InspectorFrontendClient* client, Page* frontendPage);
InspectorFrontendHost.cpp
31
#include "core/inspector/
InspectorFrontendHost
.h"
62
static PassRefPtr<FrontendMenuProvider> create(
InspectorFrontendHost
* frontendHost, ScriptValue frontendApiObject, const Vector<ContextMenuItem>& items)
74
FrontendMenuProvider(
InspectorFrontendHost
* frontendHost, ScriptValue frontendApiObject, const Vector<ContextMenuItem>& items)
116
InspectorFrontendHost
* m_frontendHost;
121
InspectorFrontendHost
::
InspectorFrontendHost
(InspectorFrontendClient* client, Page* frontendPage)
128
InspectorFrontendHost
::~
InspectorFrontendHost
()
133
void
InspectorFrontendHost
::trace(Visitor* visitor)
138
void
InspectorFrontendHost
::disconnectClient(
[
all
...]
InspectorFrontendHost.idl
36
] interface
InspectorFrontendHost
{
/external/chromium_org/third_party/WebKit/Source/web/
WebDevToolsFrontendImpl.h
42
class
InspectorFrontendHost
;
65
RefPtrWillBePersistent<
InspectorFrontendHost
> m_frontendHost;
WebDevToolsFrontendImpl.cpp
38
#include "core/inspector/
InspectorFrontendHost
.h"
87
m_frontendHost =
InspectorFrontendHost
::create(this, page);
91
global->Set(v8::String::NewFromUtf8(isolate, "
InspectorFrontendHost
"), frontendHostObj);
122
"})(
InspectorFrontendHost
,"
149
"
InspectorFrontendHost
.requestSetDockSide = function(dockSide)"
151
"
InspectorFrontendHost
.setIsDocked(dockSide !== \"undocked\");"
153
"
InspectorFrontendHost
.supportsFileSystems = function() { return true; };"
156
"
InspectorFrontendHost
.canInspectWorkers = function() { return true; };"
157
"
InspectorFrontendHost
.canSaveAs = function() { return true; };"
158
"
InspectorFrontendHost
.canSave = function() { return true; };
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
FileManager.js
39
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.SavedURL, this._savedURL, this);
40
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.CanceledSaveURL, this._canceledSaveURL, this);
41
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.AppendedToURL, this._appendedToURL, this);
71
InspectorFrontendHost
.save(url, content, forceSaveAs);
124
InspectorFrontendHost
.append(url, content);
IsolatedFileSystemManager.js
44
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.FileSystemsLoaded, this._onFileSystemsLoaded, this);
45
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.FileSystemRemoved, this._onFileSystemRemoved, this);
46
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.FileSystemAdded, this._onFileSystemAdded, this);
69
InspectorFrontendHost
.requestFileSystems();
74
InspectorFrontendHost
.addFileSystem();
82
InspectorFrontendHost
.removeFileSystem(fileSystemPath);
174
if (!
InspectorFrontendHost
.isolatedFileSystem)
176
return
InspectorFrontendHost
.isolatedFileSystem(fileSystem.name(), fileSystem.rootURL());
FileSystemWorkspaceBinding.js
50
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.IndexingTotalWorkCalculated, this._onIndexingTotalWorkCalculated, this);
51
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.IndexingWorked, this._onIndexingWorked, this);
52
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.IndexingDone, this._onIndexingDone, this);
53
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.SearchCompleted, this._onSearchCompleted, this);
417
InspectorFrontendHost
.searchInPath(requestId, this._fileSystem.path(), query);
451
InspectorFrontendHost
.indexPath(requestId, this._fileSystem.path());
459
InspectorFrontendHost
.stopIndexing(requestId);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TestController.js
33
if (!
InspectorFrontendHost
.isUnderTest())
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/host/
InspectorFrontendHost.js
601
var
InspectorFrontendHost
= window.
InspectorFrontendHost
|| null;
604
if (!
InspectorFrontendHost
) {
606
InspectorFrontendHost
= new WebInspector.InspectorFrontendHostStub();
612
if (typeof value !== "function" ||
InspectorFrontendHost
[name])
615
InspectorFrontendHost
[name] = stub.bind(null, name);
624
console.error("Incompatible embedder: method
InspectorFrontendHost
." + name + " is missing. Using stub instead.");
626
return proto[name].apply(
InspectorFrontendHost
, args);
630
InspectorFrontendHost
.events = new WebInspector.Object();
686
InspectorFrontendHost
.events.dispatchEventToListeners(name, params[0])
[
all
...]
UserMetrics.js
89
InspectorFrontendHost
.recordPanelShown(WebInspector.UserMetrics._PanelCodes[panelName] || 0);
104
InspectorFrontendHost
.recordActionTaken(this._actionCode);
Platform.js
35
WebInspector._platform =
InspectorFrontendHost
.platform();
116
WebInspector._port =
InspectorFrontendHost
.port();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
ContextMenu.js
211
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.SetUseSoftMenu, setUseSoftMenu);
236
if (WebInspector.ContextMenu._useSoftMenu ||
InspectorFrontendHost
.isHostedMode()) {
240
InspectorFrontendHost
.showContextMenuAtPoint(this._event.x, this._event.y, menuObject);
241
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.ContextMenuCleared, this._menuCleared, this);
242
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.ContextMenuItemSelected, this._onItemSelected, this);
289
InspectorFrontendHost
.events.removeEventListener(InspectorFrontendHostAPI.Events.ContextMenuCleared, this._menuCleared, this);
290
InspectorFrontendHost
.events.removeEventListener(InspectorFrontendHostAPI.Events.ContextMenuItemSelected, this._onItemSelected, this);
ForwardedInputEventHandler.js
10
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.KeyEventUnhandled, this._onKeyEventUnhandled, this);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
ImageView.js
124
InspectorFrontendHost
.copyText(this._imagePreviewElement.src);
129
InspectorFrontendHost
.copyText(this.resource.url);
134
InspectorFrontendHost
.openInNewTab(this.resource.url);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
HandlerRegistry.js
98
InspectorFrontendHost
.openInNewTab(url);
120
contextMenu.appendItem(WebInspector.copyLinkAddressLabel(),
InspectorFrontendHost
.copyText.bind(
InspectorFrontendHost
, contentProvider.contentURL()));
192
InspectorFrontendHost
.openInNewTab(resourceURL);
196
contextMenu.appendItem(WebInspector.copyLinkAddressLabel(),
InspectorFrontendHost
.copyText.bind(
InspectorFrontendHost
, resourceURL));
InspectElementModeController.js
36
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.EnterInspectElementMode, this._toggleSearch, this);
InspectorView.js
66
closeButtonElement.addEventListener("click",
InspectorFrontendHost
.closeWindow.bind(
InspectorFrontendHost
), true);
93
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.ShowConsole, this.showPanel.bind(this, "console"));
231
InspectorFrontendHost
.bringToFront();
DockController.js
117
InspectorFrontendHost
.setIsDocked(dockSide !== WebInspector.DockController.State.Undocked, this._setIsDockedResponse.bind(this, eventData));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/devices/
DevicesView.js
24
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.DevicesUpdated, this._onDevicesUpdated, this);
168
newPageButton.addEventListener("click",
InspectorFrontendHost
.openUrlOnRemoteDeviceAndInspect.bind(null, browser.id, WebInspector.targetManager.inspectedPageURL()), true);
178
InspectorFrontendHost
.setDevicesUpdatesEnabled(false);
183
InspectorFrontendHost
.setDevicesUpdatesEnabled(true);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/
Main.js
119
InspectorFrontendHost
.inspectedURLChanged(String(result.value));
207
InspectorFrontendHost
.events.addEventListener(InspectorFrontendHostAPI.Events.SetToolbarColors, updateToolbarColors);
219
WebInspector.zoomManager = new WebInspector.ZoomManager(
InspectorFrontendHost
);
302
if (!
InspectorFrontendHost
.isHostedMode()) {
390
InspectorFrontendHost
.setWhitelistedShortcuts(JSON.stringify(actionKeys));
418
InspectorFrontendHost
.openInNewTab(anchor.href);
446
InspectorFrontendHost
.openInNewTab(anchor.href);
602
InspectorFrontendHost
.copyText(object.value);
712
if (
InspectorFrontendHost
.isHostedMode())
715
InspectorFrontendHost
.zoomIn()
[
all
...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8InspectorFrontendHostCustom.cpp
41
#include "core/inspector/
InspectorFrontendHost
.h"
124
InspectorFrontendHost
* frontendHost = V8InspectorFrontendHost::toImpl(info.Holder());
157
InspectorFrontendHost
* frontendHost = V8InspectorFrontendHost::toImpl(info.Holder());
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox_bootstrap/
Toolbox.js
20
WebInspector.zoomManager = new WebInspector.ZoomManager(window.opener.
InspectorFrontendHost
);
Completed in 246 milliseconds
1
2
3
4
5