/external/webkit/Source/WebCore/inspector/front-end/ |
Resource.js | 28 WebInspector.Resource = function(identifier, url) 34 this._category = WebInspector.resourceCategories.other; 40 WebInspector.Resource.Type = { 59 return WebInspector.UIString("Document"); 61 return WebInspector.UIString("Stylesheet"); 63 return WebInspector.UIString("Image"); 65 return WebInspector.UIString("Font"); 67 return WebInspector.UIString("Script"); 69 return WebInspector.UIString("XHR"); 71 return WebInspector.UIString("WebSocket") [all...] |
Drawer.js | 30 WebInspector.Drawer = function() 32 WebInspector.View.call(this, document.getElementById("drawer")); 35 this.state = WebInspector.Drawer.State.Hidden; 47 WebInspector.Drawer.prototype = { 97 WebInspector.View.prototype.show.call(this); 116 var newRight = WebInspector.Panel.counterRightMargin; 125 if ("updateStatusBarItems" in WebInspector.currentPanel) 126 WebInspector.currentPanel.updateStatusBarItems(); 131 this.state = (this.fullPanel ? WebInspector.Drawer.State.Full : WebInspector.Drawer.State.Variable) [all...] |
ScriptsPanel.js | 26 WebInspector.ScriptsPanel = function() 28 WebInspector.Panel.call(this, "scripts"); 30 this._presentationModel = new WebInspector.DebuggerPresentationModel(); 40 this.backButton.title = WebInspector.UIString("Show the previous script resource."); 49 this.forwardButton.title = WebInspector.UIString("Show the next script resource."); 75 this.pauseButton.title = WebInspector.UIString("Pause script execution."); 84 this.stepOverButton.title = WebInspector.UIString("Step over next function call."); 93 this.stepIntoButton.title = WebInspector.UIString("Step into next function call."); 102 this.stepOutButton.title = WebInspector.UIString("Step out of current function."); 108 this.toggleBreakpointsButton = new WebInspector.StatusBarButton(WebInspector.UIString("Deactivate all breakpoints."), "toggle-breakpoints") [all...] |
AuditRules.js | 31 WebInspector.AuditRules.IPAddressRegexp = /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/; 33 WebInspector.AuditRules.CacheableResponseCodes = 45 WebInspector.AuditRules.getDomainToResourcesMap = function(resources, types, needFullResources) 66 WebInspector.AuditRules.GzipRule = function() 68 WebInspector.AuditRule.call(this, "network-gzip", "Enable gzip compression"); 71 WebInspector.AuditRules.GzipRule.prototype = { 91 summary.addChild(String.sprintf("%s could save ~%s", WebInspector.AuditRuleResult.linkifyDisplayName(resource.url), Number.bytesToString(savings))); 112 return WebInspector.Resource.Type.isTextType(resource.type) && resource.domain && resource.resourceSize !== undefined && resource.resourceSize > 150; 116 WebInspector.AuditRules.GzipRule.prototype.__proto__ = WebInspector.AuditRule.prototype [all...] |
View.js | 26 WebInspector.View = function(element) 32 WebInspector.View.prototype = { 74 WebInspector.View.prototype.__proto__ = WebInspector.Object.prototype;
|
SearchController.js | 32 WebInspector.SearchController = function() 43 WebInspector.SearchController.prototype = { 47 panel = WebInspector.currentPanel; 51 if (panel === WebInspector.currentPanel) 52 this._updateSearchMatchesCount(WebInspector.currentPanel.currentQuery && matches); 57 var panelName = WebInspector.currentPanel && WebInspector.currentPanel.toolbarItemLabel; 60 var newLabel = WebInspector.UIString("Search %s", panelName); 61 if (WebInspector.attached) 77 var isMac = WebInspector.isMac() [all...] |
PanelEnablerView.js | 26 WebInspector.PanelEnablerView = function(identifier, headingText, disclaimerText, buttonTitle) 28 WebInspector.View.call(this); 61 this.enabledForSession = enableOption(WebInspector.UIString("Only enable for this session"), true); 62 this.enabledAlways = enableOption(WebInspector.UIString("Always enable")); 76 WebInspector.PanelEnablerView.prototype = { 84 WebInspector.View.prototype.show.call(this, parentElement); 102 WebInspector.PanelEnablerView.prototype.__proto__ = WebInspector.View.prototype;
|
AuditFormatters.js | 31 WebInspector.applyFormatters = function(value) 41 formatter = WebInspector.AuditFormatters.text; 47 formatter = WebInspector.AuditFormatters.concat; 50 formatter = WebInspector.AuditFormatters[value.type]; 60 WebInspector.AuditFormatters = { 78 parent.appendChild(WebInspector.applyFormatters(arguments[arg]));
|
ResourceTreeModel.js | 32 WebInspector.ResourceTreeModel = function(networkManager) 34 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.ResourceStarted, this._onResourceStarted, this); 35 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.ResourceUpdated, this._onResourceUpdated, this); 36 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.ResourceFinished, this._onResourceUpdated, this); 37 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.FrameDetached, this._onFrameDetachedFromParent, this); 38 WebInspector.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.FrameCommittedLoad, this._o (…) [all...] |
DOMStorageItemsView.js | 26 WebInspector.DOMStorageItemsView = function(domStorage) 28 WebInspector.View.call(this); 35 this.deleteButton = new WebInspector.StatusBarButton(WebInspector.UIString("Delete"), "delete-storage-status-bar-item"); 39 this.refreshButton = new WebInspector.StatusBarButton(WebInspector.UIString("Refresh"), "refresh-storage-status-bar-item"); 43 WebInspector.DOMStorageItemsView.prototype = { 51 WebInspector.View.prototype.show.call(this, parentElement); 57 WebInspector.View.prototype.hide.call(this); 89 columns[0].title = WebInspector.UIString("Key") [all...] |
HAREntry.js | 37 WebInspector.HAREntry = function(resource) 42 WebInspector.HAREntry.prototype = { 48 time: WebInspector.HAREntry._toMilliseconds(this._resource.duration), 126 receive: WebInspector.HAREntry._toMilliseconds(this._resource.receiveDuration), 184 WebInspector.HAREntry._toMilliseconds = function(time) 189 WebInspector.HARLog = function() 193 WebInspector.HARLog.prototype = { 201 name: "WebInspector", 205 entries: WebInspector.networkResources.map(this._convertResource.bind(this)) 213 startedDateTime: new Date(WebInspector.mainResource.startTime * 1000) [all...] |
BreakpointsSidebarPane.js | 26 WebInspector.JavaScriptBreakpointsSidebarPane = function(model, showSourceLineDelegate) 28 WebInspector.SidebarPane.call(this, WebInspector.UIString("Breakpoints")); 38 this.emptyElement.textContent = WebInspector.UIString("No Breakpoints"); 45 WebInspector.JavaScriptBreakpointsSidebarPane.prototype = { 60 var displayName = breakpoint.url ? WebInspector.displayNameForURL(breakpoint.url) : WebInspector.UIString("(program)"); 140 var contextMenu = new WebInspector.ContextMenu(); 143 contextMenu.appendItem(WebInspector.UIString("Remove Breakpoint"), removeHandler); 193 WebInspector.JavaScriptBreakpointsSidebarPane.prototype.__proto__ = WebInspector.SidebarPane.prototype [all...] |
TimelinePanel.js | 31 WebInspector.TimelinePanel = function() 33 WebInspector.Panel.call(this, "timeline"); 48 var itemsTreeElement = new WebInspector.SidebarSectionTreeElement(WebInspector.UIString("RECORDS"), {}, true); 59 this._timelineGrid = new WebInspector.TimelineGrid(); 84 this._calculator = new WebInspector.TimelineCalculator(); 86 var shortRecordThresholdTitle = Number.secondsToString(WebInspector.TimelinePanel.shortRecordThreshold); 87 this._showShortRecordsTitleText = WebInspector.UIString("Show the records that are shorter than %s", shortRecordThresholdTitle); 88 this._hideShortRecordsTitleText = WebInspector.UIString("Hide the records that are shorter than %s", shortRecordThresholdTitle); 94 this._popoverHelper = new WebInspector.PopoverHelper(this._containerElement, this._getPopoverAnchor.bind(this), this._showPopover.bind(th (…) [all...] |
CookieParser.js | 38 WebInspector.CookieParser = function() 42 WebInspector.CookieParser.prototype = { 57 this._addCookie(kv, WebInspector.Cookie.Type.Request); 72 this._addCookie(kv, WebInspector.Cookie.Type.Response); 137 this._lastCookie = keyValue.value ? new WebInspector.Cookie(keyValue.key, keyValue.value, type) : 138 new WebInspector.Cookie("", keyValue.key, type); 144 WebInspector.CookieParser.parseCookie = function(header) 146 return (new WebInspector.CookieParser()).parseCookie(header); 149 WebInspector.CookieParser.parseSetCookie = function(header) 151 return (new WebInspector.CookieParser()).parseSetCookie(header) [all...] |
InspectorFrontendHostStub.js | 33 WebInspector.InspectorFrontendHostStub = function() 38 WebInspector._platformFlavor = WebInspector.PlatformFlavor.MacLeopard; 40 WebInspector.InspectorFrontendHostStub.prototype = { 132 InspectorFrontendHost = new WebInspector.InspectorFrontendHostStub();
|
Settings.js | 55 WebInspector.Settings = function() 66 this.installApplicationSetting("pauseOnExceptionStateString", WebInspector.ScriptsPanel.PauseOnExceptionsState.DontPauseOnExceptions); 79 WebInspector.Settings.prototype = { 108 WebInspector.Settings.prototype.__proto__ = WebInspector.Object.prototype;
|
WelcomeView.js | 30 WebInspector.WelcomeView = function(identifier, headingText, instructionsText) 32 WebInspector.View.call(this); 58 WebInspector.WelcomeView.prototype = { 73 WebInspector.WelcomeView.prototype.__proto__ = WebInspector.View.prototype;
|
ProfilesPanel.js | 28 WebInspector.ProfileType = function(id, name) 34 WebInspector.ProfileType.URLRegExp = /webkit-profile:\/\/(.+)\/(.+)#([0-9]+)/; 36 WebInspector.ProfileType.prototype = { 91 WebInspector.ProfilesPanel = function() 93 WebInspector.Panel.call(this, "profiles"); 100 var panelEnablerHeading = WebInspector.UIString("You need to enable profiling before you can use the Profiles panel."); 101 var panelEnablerDisclaimer = WebInspector.UIString("Enabling profiling will make scripts run slower."); 102 var panelEnablerButton = WebInspector.UIString("Enable Profiling"); 103 this.panelEnablerView = new WebInspector.PanelEnablerView("profiles", panelEnablerHeading, panelEnablerDisclaimer, panelEnablerButton); 112 this.enableToggleButton = new WebInspector.StatusBarButton("", "enable-toggle-status-bar-item") [all...] |
SourceFile.js | 31 WebInspector.SourceFile = function(id, script, contentChangedDelegate) 36 this._resource = WebInspector.networkManager.inflightResourceForURL(script.sourceURL) || WebInspector.resourceForURL(script.sourceURL); 49 WebInspector.SourceFile.prototype = { 80 this._mapping = new WebInspector.SourceMapping(this._scripts); 140 if (resource.type === WebInspector.Resource.Type.Script) 237 WebInspector.FormattedSourceFile = function(sourceFileId, script, contentChangedDelegate, formatter) 239 WebInspector.SourceFile.call(this, sourceFileId, script, contentChangedDelegate); 243 WebInspector.FormattedSourceFile.prototype = { 257 this._mapping = new WebInspector.FormattedSourceMapping(this._scripts, text, formattedText, mapping) [all...] |
DebuggerModel.js | 31 WebInspector.DebuggerModel = function() 36 InspectorBackend.registerDomainDispatcher("Debugger", new WebInspector.DebuggerDispatcher(this)); 39 WebInspector.DebuggerModel.Events = { 50 WebInspector.DebuggerModel.prototype = { 63 this.dispatchEventToListeners(WebInspector.DebuggerModel.Events.DebuggerWasEnabled); 68 this.dispatchEventToListeners(WebInspector.DebuggerModel.Events.DebuggerWasDisabled); 112 this.dispatchEventToListeners(WebInspector.DebuggerModel.Events.BreakpointResolved, {breakpointId: breakpointId, location: location}); 119 this.dispatchEventToListeners(WebInspector.DebuggerModel.Events.Reset); 173 this.dispatchEventToListeners(WebInspector.DebuggerModel.Events.DebuggerPaused, details); 179 this.dispatchEventToListeners(WebInspector.DebuggerModel.Events.DebuggerResumed) [all...] |
ObjectPropertiesSection.js | 27 WebInspector.ObjectPropertiesSection = function(object, title, subtitle, emptyPlaceholder, ignoreHasOwnProperty, extraProperties, treeElementConstructor) 29 this.emptyPlaceholder = (emptyPlaceholder || WebInspector.UIString("No Properties")); 33 this.treeElementConstructor = treeElementConstructor || WebInspector.ObjectPropertyTreeElement; 36 WebInspector.PropertiesSection.call(this, title, subtitle); 39 WebInspector.ObjectPropertiesSection.prototype = { 66 rootPropertyComparer = WebInspector.ObjectPropertiesSection.CompareProperties; 91 WebInspector.ObjectPropertiesSection.prototype.__proto__ = WebInspector.PropertiesSection.prototype; 93 WebInspector.ObjectPropertiesSection.CompareProperties = function(propertyA, propertyB) 138 WebInspector.ObjectPropertyTreeElement = function(property [all...] |
/external/webkit/Source/WebKit2/WebProcess/WebPage/gtk/ |
WebInspectorGtk.cpp | 28 #include "WebInspector.h" 37 String WebInspector::localizedStringsURL() const
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/qt/ |
WebInspectorQt.cpp | 27 #include "WebInspector.h" 36 String WebInspector::localizedStringsURL() const
|
/external/webkit/Source/WebKit2/UIProcess/ |
WebInspectorProxy.cpp | 89 m_page->process()->send(Messages::WebInspector::Show(), m_page->pageID()); 97 m_page->process()->send(Messages::WebInspector::Close(), m_page->pageID()); 105 m_page->process()->send(Messages::WebInspector::ShowConsole(), m_page->pageID()); 124 m_page->process()->send(Messages::WebInspector::StopJavaScriptDebugging(), m_page->pageID()); 126 m_page->process()->send(Messages::WebInspector::StartJavaScriptDebugging(), m_page->pageID()); 138 m_page->process()->send(Messages::WebInspector::StopJavaScriptProfiling(), m_page->pageID()); 140 m_page->process()->send(Messages::WebInspector::StartJavaScriptProfiling(), m_page->pageID()); 152 m_page->process()->send(Messages::WebInspector::StopPageProfiling(), m_page->pageID()); 154 m_page->process()->send(Messages::WebInspector::StartPageProfiling(), m_page->pageID());
|
/external/webkit/Source/WebKit/win/ |
WebInspector.h | 37 class WebInspector : public IWebInspector, public IWebInspectorPrivate { 38 WTF_MAKE_NONCOPYABLE(WebInspector); 40 static WebInspector* createInstance(WebView*); 70 WebInspector(WebView*); 71 ~WebInspector();
|