Searched refs:ComputedPagesCallback (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/
H A DGenericCallback.h153 // FIXME: Make a version of CallbackBase with two arguments, and define ComputedPagesCallback as a specialization.
154 class ComputedPagesCallback : public CallbackBase { class in namespace:WebKit
158 static PassRefPtr<ComputedPagesCallback> create(void* context, CallbackFunction callback)
160 return adoptRef(new ComputedPagesCallback(context, callback));
163 virtual ~ComputedPagesCallback()
189 ComputedPagesCallback(void* context, CallbackFunction callback) function in class:WebKit::ComputedPagesCallback
H A DWebPageProxy.h467 void computePagesForPrinting(WebFrameProxy*, const PrintInfo&, PassRefPtr<ComputedPagesCallback>);
741 HashMap<uint64_t, RefPtr<ComputedPagesCallback> > m_computedPagesCallbacks;
H A DWebPageProxy.cpp2669 RefPtr<ComputedPagesCallback> callback = m_computedPagesCallbacks.take(callbackID);
2960 void WebPageProxy::computePagesForPrinting(WebFrameProxy* frame, const PrintInfo& printInfo, PassRefPtr<ComputedPagesCallback> prpCallback)
2962 RefPtr<ComputedPagesCallback> callback = prpCallback;
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKPrintingView.mm315 RefPtr<ComputedPagesCallback> callback = ComputedPagesCallback::create(context, pageDidComputePageRects);
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPage.cpp539 toImpl(page)->computePagesForPrinting(toImpl(frame), printInfoFromWKPrintInfo(printInfo), ComputedPagesCallback::create(new ComputedPagesContext(callback, context), computedPagesCallback));
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebPage.cpp2114 send(Messages::WebPageProxy::ComputedPagesCallback(resultPageRects, resultTotalScaleFactorForPrinting, callbackID));

Completed in 360 milliseconds