blob: f3bac1d01e85da5827047d72886a7af94f1f84e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// 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
|