HomeSort by relevance Sort by last modified time
    Searched refs:m_frontend (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorMemoryAgent.cpp 54 , m_frontend(0)
60 ASSERT(!m_frontend);
61 m_frontend = frontend->memory();
66 m_frontend = 0;
InspectorHeapProfilerAgent.cpp 69 , m_frontend(0)
89 if (!m_frontend)
94 m_frontend->resetProfiles();
99 m_frontend = frontend->heapprofiler();
106 m_frontend = 0;
175 if (!m_frontend)
179 m_frontend->lastSeenObjectId(lastSeenObjectId, WTF::currentTimeMS());
184 if (!m_frontend)
189 m_frontend->heapStatsUpdate(statsDiff.release());
216 : m_frontend(frontend), m_uid(uid) {
220 InspectorFrontend::HeapProfiler* m_frontend; member in class:WebCore::OutputStream
262 InspectorFrontend::HeapProfiler* m_frontend; member in class:WebCore::HeapSnapshotProgress
    [all...]
WorkerInspectorController.cpp 119 ASSERT(!m_frontend);
122 m_frontend = adoptPtr(new InspectorFrontend(m_frontendChannel.get()));
125 m_agents.setFrontend(m_frontend.get());
130 if (!m_frontend)
138 m_frontend.clear();
144 ASSERT(!m_frontend);
InspectorAgent.cpp 59 , m_frontend(0)
94 m_frontend = inspectorFrontend;
100 m_frontend = 0;
121 for (Vector<pair<long, String> >::iterator it = m_pendingEvaluateTestCommands.begin(); m_frontend && it != m_pendingEvaluateTestCommands.end(); ++it)
122 m_frontend->inspector()->evaluateForTestInFrontend(static_cast<int>((*it).first), (*it).second);
152 m_frontend->inspector()->evaluateForTestInFrontend(static_cast<int>(callId), script);
164 if (m_state->getBoolean(InspectorAgentState::inspectorAgentEnabled) && m_frontend) {
165 m_frontend->inspector()->inspect(objectToInspect, hints);
WorkerInspectorController.h 60 bool hasFrontend() const { return m_frontend; }
78 OwnPtr<InspectorFrontend> m_frontend; member in class:WebCore::WorkerInspectorController
InspectorAgent.h 72 InspectorFrontend* frontend() const { return m_frontend; }
82 bool hasFrontend() const { return m_frontend; }
101 InspectorFrontend* m_frontend; member in class:WebCore::InspectorAgent
InspectorConsoleAgent.cpp 68 , m_frontend(0)
98 expiredMessage.addToFrontend(m_frontend, m_injectedScriptManager, false);
103 m_consoleMessages[i]->addToFrontend(m_frontend, m_injectedScriptManager, false);
122 if (m_frontend && m_enabled)
123 m_frontend->messagesCleared();
137 m_frontend->messagesCleared();
145 m_frontend = frontend->console();
150 m_frontend = 0;
182 bool canGenerateCallStack = !isWorkerAgent() && m_frontend;
267 if (m_frontend && m_state->getBoolean(ConsoleAgentState::monitoringXHR))
    [all...]
InspectorProfilerAgent.cpp 67 , m_frontend(0)
84 if (m_frontend && m_state->getBoolean(ProfilerAgentState::profileHeadersRequested))
85 m_frontend->addProfileHeader(createProfileHeader(*profile));
97 if (!m_frontend)
106 if (!m_frontend)
192 if (!m_frontend)
197 m_frontend->resetProfiles();
202 m_frontend = frontend->profiler();
207 m_frontend = 0;
264 if (m_frontend)
    [all...]
PageRuntimeAgent.cpp 58 , m_frontend(0)
71 m_frontend = frontend->runtime();
76 m_frontend = 0;
121 ASSERT(m_frontend);
131 ASSERT(m_frontend);
185 m_frontend->executionContextCreated(ExecutionContextDescription::create()
InspectorMemoryAgent.h 65 InspectorFrontend::Memory* m_frontend; member in class:WebCore::InspectorMemoryAgent
InspectorCanvasAgent.cpp 69 , m_frontend(0)
81 m_frontend = frontend->canvas();
86 m_frontend = 0;
114 if (m_frontend)
115 m_frontend->traceLogsRemoved(0, 0);
213 ASSERT(m_frontend);
223 m_frontend->contextCreated(frameId);
294 if (m_frontend) {
298 m_frontend->contextCreated(frameId);
319 m_frontend->traceLogsRemoved(0, 0)
    [all...]
InspectorDOMStorageAgent.cpp 75 , m_frontend(0)
85 m_frontend = frontend;
90 m_frontend = 0;
208 if (!m_frontend || !isEnabled())
214 m_frontend->domstorage()->domStorageItemsCleared(id);
216 m_frontend->domstorage()->domStorageItemRemoved(id, key);
218 m_frontend->domstorage()->domStorageItemAdded(id, key, newValue);
220 m_frontend->domstorage()->domStorageItemUpdated(id, key, oldValue, newValue);
PageRuntimeAgent.h 72 InspectorFrontend::Runtime* m_frontend; member in class:WebCore::PageRuntimeAgent
InspectorApplicationCacheAgent.cpp 48 , m_frontend(0)
54 m_frontend = frontend->applicationcache();
60 m_frontend = 0;
91 m_frontend->applicationCacheStatusUpdated(m_pageAgent->frameId(frame), manifestURL, static_cast<int>(status));
97 m_frontend->networkStateUpdated(isNowOnline);
InspectorWorkerAgent.cpp 56 : m_frontend(frontend)
96 m_frontend->worker()->dispatchMessageFromWorker(m_id, messageObject);
99 InspectorFrontend* m_frontend; member in class:WebCore::InspectorWorkerAgent::WorkerFrontendChannel
InspectorResourceAgent.cpp 183 m_frontend = frontend->network();
188 m_frontend = 0;
312 m_frontend->requestWillBeSent(requestId, m_pageAgent->frameId(loader->frame()), m_pageAgent->loaderId(loader), urlWithoutFragment(loader->url()).string(), buildObjectForResourceRequest(request), currentTime(), initiatorObject, buildObjectForResourceResponse(redirectResponse, loader));
317 m_frontend->requestServedFromCache(IdentifiersFactory::requestId(identifier));
353 m_frontend->responseReceived(requestId, m_pageAgent->frameId(loader->frame()), m_pageAgent->loaderId(loader), currentTime(), InspectorPageAgent::resourceTypeJson(type), resourceResponse);
375 m_frontend->dataReceived(requestId, currentTime(), dataLength, encodedDataLength);
389 m_frontend->loadingFinished(requestId, finishTime);
396 m_frontend->loadingFailed(requestId, currentTime(), error.localizedDescription(), canceled ? &canceled : 0);
531 m_frontend->webSocketCreated(IdentifiersFactory::requestId(identifier), urlWithoutFragment(requestURL).string());
538 m_frontend->webSocketWillSendHandshakeRequest(IdentifiersFactory::requestId(identifier), currentTime(), reque (…)
    [all...]
InspectorApplicationCacheAgent.h 76 InspectorFrontend::ApplicationCache* m_frontend; member in class:WebCore::InspectorApplicationCacheAgent
InspectorDOMStorageAgent.h 83 InspectorFrontend* m_frontend; member in class:WebCore::InspectorDOMStorageAgent
InspectorDatabaseAgent.h 79 InspectorFrontend::Database* m_frontend; member in class:WebCore::InspectorDatabaseAgent
InspectorHeapProfilerAgent.h 90 InspectorFrontend::HeapProfiler* m_frontend; member in class:WebCore::InspectorHeapProfilerAgent
InspectorLayerTreeAgent.cpp 84 , m_frontend(0)
96 m_frontend = frontend->layertree();
101 m_frontend = 0;
133 m_frontend->layerTreeDidChange();
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionBackend.cpp 237 // --> SQLTransactionBackend // RefPtr<SQLTransaction> m_frontend points to ...
244 // doCleanup() to nullify m_frontend. This is done at the end of the transaction's
253 // --> SQLTransactionBackend // RefPtr<SQLTransaction> m_frontend points to ...
261 // --> SQLTransactionBackend // RefPtr<SQLTransaction> m_frontend;
267 // At the end of the cleanup state, the SQLTransactionBackend::m_frontend is nullified.
279 // states nullify SQLTransactionBackend::m_frontend, the SQLTransaction will deleted then.
289 // doCleanup(). doCleanup() is where we nullify SQLTransactionBackend::m_frontend
357 : m_frontend(frontend)
360 , m_hasCallback(m_frontend->hasCallback())
361 , m_hasSuccessCallback(m_frontend->hasSuccessCallback()
    [all...]
SQLStatementBackend.h 70 OwnPtr<AbstractSQLStatement> m_frontend; member in class:WebCore::SQLStatementBackend
DatabaseBackendBase.h 90 void setFrontend(DatabaseBase* frontend) { m_frontend = frontend; }
133 DatabaseBase* m_frontend; member in class:WebCore::DatabaseBackendBase
SQLStatementBackend.cpp 48 // --> SQLStatementBackend // OwnPtr<SQLStatement> m_frontend points to ...
54 // --> SQLStatementBackend // OwnPtr<SQLStatement> m_frontend points to ...
83 : m_frontend(frontend)
86 , m_hasCallback(m_frontend->hasCallback())
87 , m_hasErrorCallback(m_frontend->hasErrorCallback())
90 m_frontend->setBackend(this);
95 return m_frontend.get();

Completed in 593 milliseconds

1 2