HomeSort by relevance Sort by last modified time
    Searched refs:ComputedPagesCallback (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/
GenericCallback.h 153 // FIXME: Make a version of CallbackBase with two arguments, and define ComputedPagesCallback as a specialization.
154 class ComputedPagesCallback : public CallbackBase {
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)
WebPageProxy.h 467 void computePagesForPrinting(WebFrameProxy*, const PrintInfo&, PassRefPtr<ComputedPagesCallback>);
671 void computedPagesCallback(const Vector<WebCore::IntRect>&, double totalScaleFactorForPrinting, uint64_t);
    [all...]
WebPageProxy.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKPrintingView.mm 315 RefPtr<ComputedPagesCallback> callback = ComputedPagesCallback::create(context, pageDidComputePageRects);
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.cpp 519 static void computedPagesCallback(const Vector<WebCore::IntRect>& rects, double scaleFactor, WKErrorRef error, void* untypedContext)
539 toImpl(page)->computePagesForPrinting(toImpl(frame), printInfoFromWKPrintInfo(printInfo), ComputedPagesCallback::create(new ComputedPagesContext(callback, context), computedPagesCallback));
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp     [all...]

Completed in 32 milliseconds