commit | 82a01acfe2518e3345c57113c8f597f5cf3d2344 | [log] [tgz] |
---|---|---|
author | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Thu Sep 08 16:00:18 2011 |
committer | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Thu Sep 08 16:00:18 2011 |
tree | b48cee9a40b932908ca50270685db6b668e8a41c | |
parent | 0295327de85ec83a6d0a37ffbb4eaeadb138f531 [diff] [blame] |
Move compositor ctor and dtor to .cc file. BUG=None TEST=Linux clang bot goes green [email protected] Review URL: http://codereview.chromium.org/7848023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100154 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/ui/gfx/compositor/compositor.cc b/ui/gfx/compositor/compositor.cc index 24f7a08..eca0c70 100644 --- a/ui/gfx/compositor/compositor.cc +++ b/ui/gfx/compositor/compositor.cc
@@ -7,6 +7,14 @@ namespace ui { +Compositor::Compositor(CompositorDelegate* delegate, const gfx::Size& size) + : delegate_(delegate), + size_(size) { +} + +Compositor::~Compositor() { +} + void Compositor::NotifyStart() { OnNotifyStart(); }