diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-18 07:24:30 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-18 07:24:30 +0000 |
commit | 7f0d825f49dde66a6e9137a4e35460765bc5f0d8 (patch) | |
tree | 6944603cf2a97934afad6e599500ff45091316ed /cc/output/delegated_frame_data.h | |
parent | 95e4e1a0fda6929b47702e69e4ddfe384b5d014b (diff) | |
download | chromium_src-7f0d825f49dde66a6e9137a4e35460765bc5f0d8.zip chromium_src-7f0d825f49dde66a6e9137a4e35460765bc5f0d8.tar.gz chromium_src-7f0d825f49dde66a6e9137a4e35460765bc5f0d8.tar.bz2 |
Part 4 of cc/ directory shuffles: output
Continuation of https://src.chromium.org/viewvc/chrome?view=rev&revision=188681
BUG=190824
TBR=piman@chromium.org, jschuh@chromium.org
Review URL: https://codereview.chromium.org/12912006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188689 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/output/delegated_frame_data.h')
-rw-r--r-- | cc/output/delegated_frame_data.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/cc/output/delegated_frame_data.h b/cc/output/delegated_frame_data.h new file mode 100644 index 0000000..499b549 --- /dev/null +++ b/cc/output/delegated_frame_data.h @@ -0,0 +1,27 @@ +// 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 CC_OUTPUT_DELEGATED_FRAME_DATA_H_ +#define CC_OUTPUT_DELEGATED_FRAME_DATA_H_ + +#include "cc/base/cc_export.h" +#include "cc/base/scoped_ptr_vector.h" +#include "cc/render_pass.h" +#include "cc/transferable_resource.h" +#include "ui/gfx/size.h" + +namespace cc { + +class CC_EXPORT DelegatedFrameData { + public: + DelegatedFrameData(); + ~DelegatedFrameData(); + + TransferableResourceArray resource_list; + ScopedPtrVector<RenderPass> render_pass_list; +}; + +} // namespace cc + +#endif // CC_OUTPUT_DELEGATED_FRAME_DATA_H_ |