Searched defs:inspector (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebKit/qt/docs/webkitsnippets/
H A Dqtwebkit_qwebinspector_snippet.cpp10 QWebInspector *inspector = new QWebInspector; local
11 inspector->setPage(page);
/external/webkit/Source/WebKit/qt/tests/qwebinspector/
H A Dtst_qwebinspector.cpp36 { // External inspector + manual destruction of page first
39 QWebInspector* inspector = new QWebInspector(); local
40 inspector->setPage(page);
45 delete inspector;
47 { // External inspector + manual destruction of inspector first
50 QWebInspector* inspector = new QWebInspector(); local
51 inspector->setPage(page);
55 delete inspector;
58 { // Internal inspector
[all...]
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebInspectorClient.cpp49 WebPage* inspectorPage = m_page->inspector()->createInspectorPage();
79 WebInspector* inspector = m_page->inspector(); local
80 if (!inspector)
82 WebPage* inspectorPage = inspector->inspectorPage();
/external/webkit/Source/WebKit/win/
H A DWebInspector.cpp42 WebInspector* inspector = new WebInspector(webView); local
43 inspector->AddRef();
44 return inspector;
167 InspectorController* inspector = page->inspectorController();
169 if (inspector->debuggerEnabled())
170 inspector->disableDebugger();
172 inspector->showAndEnableDebugger();
204 InspectorController* inspector = page->inspectorController();
206 if (inspector->isRecordingUserInitiatedProfile())
207 inspector
[all...]
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpage_p.h210 QWebInspector* inspector; member in class:QWebPagePrivate
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DInspectorClientQt.cpp210 QWebInspector* inspector = m_inspectedWebPage->d->getOrCreateInspector(); local
212 if (m_inspectedWebPage->d->inspector->d->remoteFrontend)
216 // Web inspector. This is used for SDK purposes. Please keep this hook
221 inspectorUrl = inspector->property("_q_inspectorUrl").toUrl();
224 inspectorUrl = QUrl(QLatin1String("qrc:/webkit/inspector/inspector.html"));
227 QVariant inspectorJavaScriptWindowObjects = inspector->property("_q_inspectorJavaScriptWindowObjects");
233 inspector->d->setFrontend(inspectorView);
250 // Channel was allocated by InspectorServerQt. Here we transfer ownership to inspector.
251 m_inspectedWebPage->d->inspector
[all...]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebViewData.h79 WebInspector *inspector; variable
/external/webkit/Tools/DumpRenderTree/gtk/
H A DDumpRenderTree.cpp106 return pathOrURL.find("inspector/") != string::npos;
444 WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView); local
445 g_object_set(G_OBJECT(inspector), "javascript-profiling-enabled", FALSE, NULL);
1107 WebKitWebInspector* inspector = webkit_web_view_get_inspector(view); local
1108 g_object_connect(G_OBJECT(inspector),
H A DLayoutTestControllerGtk.cpp53 void webkit_web_inspector_execute_script(WebKitWebInspector* inspector, long callId, const gchar* script);
303 WebKitWebInspector* inspector = webkit_web_view_get_inspector(view); local
304 g_object_set(G_OBJECT(inspector), "timeline-profiling-enabled", flag, NULL);
525 WebKitWebInspector* inspector = webkit_web_view_get_inspector(view); local
526 g_object_set(G_OBJECT(inspector), "javascript-profiling-enabled", flag, NULL);
842 WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView); local
844 webkit_web_inspector_show(inspector);
850 WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView); local
852 webkit_web_inspector_close(inspector);
858 WebKitWebInspector* inspector local
[all...]
/external/webkit/Tools/DumpRenderTree/win/
H A DDumpRenderTree.cpp803 return strstr(pathOrURL, "/inspector/") || strstr(pathOrURL, "\\inspector\\");
919 COMPtr<IWebInspector> inspector; local
920 if (SUCCEEDED(webViewPrivate->inspector(&inspector)))
921 inspector->setJavaScriptProfilingEnabled(FALSE);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebPage.cpp1465 WebInspector* WebPage::inspector() function in class:WebKit::WebPage
1869 if (WebInspector* inspector = this->inspector())
1870 inspector->didReceiveWebInspectorMessage(connection, messageID, arguments);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.cpp372 // Don't give the inspector full access to the file system.
1334 if (WebInspectorProxy* inspector = this->inspector())
1335 inspector->didReceiveWebInspectorProxyMessage(connection, messageID, arguments);
1354 if (WebInspectorProxy* inspector = this->inspector())
1355 inspector->didReceiveSyncWebInspectorProxyMessage(connection, messageID, arguments, reply);
2097 WebInspectorProxy* WebPageProxy::inspector() function in class:WebKit::WebPageProxy

Completed in 353 milliseconds