Lines Matching full:state
162 GetSitesWithDataState* state = new GetSitesWithDataState(this, callbackID);
163 m_pendingGetSitesWithData.set(callbackID, state);
164 state->getSitesWithDataForNextPlugin();
223 ClearSiteDataState* state = new ClearSiteDataState(this, sitesVector, flags, maxAgeInSeconds, callbackID);
224 m_pendingClearSiteData.set(callbackID, state);
225 state->clearSiteDataForNextPlugin();
262 GetSitesWithDataState* state = m_pendingGetSitesWithData.get(callbackID);
263 ASSERT(state);
265 state->didGetSitesWithDataForSinglePlugin(sites);
270 OwnPtr<GetSitesWithDataState> state = adoptPtr(m_pendingGetSitesWithData.take(callbackID));
271 ASSERT(state);
278 ClearSiteDataState* state = m_pendingClearSiteData.get(callbackID);
279 ASSERT(state);
281 state->didClearSiteDataForSinglePlugin();
286 OwnPtr<ClearSiteDataState> state = adoptPtr(m_pendingClearSiteData.take(callbackID));
287 ASSERT(state);