blob: 277bdbd0617e3b437f9ba943bbe735f85103be19 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
interface Picture {
// Replays the drawing commands on the specified canvas. Note that
// this has the effect of unfurling this picture into the destination
// canvas. Using the Canvas drawPicture entry point gives the destination
// canvas the option of just taking a ref.
void playback(Canvas canvas);
};