blob: f3bac1d01e85da5827047d72886a7af94f1f84e3 [file] [log] [blame]
// Copyright 2012 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.
#ifndef CCRenderPassSink_h
#define CCRenderPassSink_h
#include "base/memory/scoped_ptr.h"
namespace cc {
class CCRenderPass;
class CCRenderPassSink {
public:
virtual void appendRenderPass(scoped_ptr<CCRenderPass>) = 0;
};
}
#endif // CCRenderPassSink_h