HomeSort by relevance Sort by last modified time
    Searched defs:CopyOutputRequest (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/cc/output/
copy_output_request.cc 18 scoped_ptr<CopyOutputRequest> CopyOutputRequest::CreateRelayRequest(
19 const CopyOutputRequest& original_request,
21 scoped_ptr<CopyOutputRequest> relay = CreateRequest(result_callback);
30 CopyOutputRequest::CopyOutputRequest() {}
32 CopyOutputRequest::CopyOutputRequest(
40 TRACE_EVENT_ASYNC_BEGIN0("cc", "CopyOutputRequest", this);
43 CopyOutputRequest::~CopyOutputRequest()
    [all...]
copy_output_request.h 20 class CC_EXPORT CopyOutputRequest {
25 static scoped_ptr<CopyOutputRequest> CreateEmptyRequest() {
26 return make_scoped_ptr(new CopyOutputRequest);
28 static scoped_ptr<CopyOutputRequest> CreateRequest(
30 return make_scoped_ptr(new CopyOutputRequest(false, result_callback));
32 static scoped_ptr<CopyOutputRequest> CreateBitmapRequest(
34 return make_scoped_ptr(new CopyOutputRequest(true, result_callback));
36 static scoped_ptr<CopyOutputRequest> CreateRelayRequest(
37 const CopyOutputRequest& original_request,
40 ~CopyOutputRequest();
    [all...]

Completed in 124 milliseconds