Source/WebCore/ChangeLog

 12012-01-13 Greg Billock <gbillock@google.com>
 2
 3 Don't use pending activity notification in IntentRequest
 4 https://bugs.webkit.org/show_bug.cgi?id=76302
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 * Modules/intents/IntentRequest.cpp:
 9 (WebCore::IntentRequest::IntentRequest):
 10 (WebCore::IntentRequest::postResult):
 11 (WebCore::IntentRequest::postFailure):
 12
1132012-01-12 Pierre Rossi <pierre.rossi@gmail.com>
214
315 [Qt] Unreviewed build fix after r104828.

Source/WebCore/Modules/intents/IntentRequest.cpp

@@IntentRequest::IntentRequest(ScriptExecutionContext* context,
5353 , m_successCallback(successCallback)
5454 , m_errorCallback(errorCallback)
5555{
56  setPendingActivity(this);
5756}
5857
5958void IntentRequest::contextDestroyed()

@@void IntentRequest::postResult(SerializedScriptValue* data)
8180
8281 m_successCallback.clear();
8382 m_errorCallback.clear();
84  unsetPendingActivity(this);
8583}
8684
8785void IntentRequest::postFailure(SerializedScriptValue* data)

@@void IntentRequest::postFailure(SerializedScriptValue* data)
9694
9795 m_successCallback.clear();
9896 m_errorCallback.clear();
99  unsetPendingActivity(this);
10097}
10198
10299} // namespace WebCore