OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "ui/gfx/compositor/test_compositor_host.h" | |
6 | |
7 namespace ui { | |
8 | |
9 // static | |
10 TestCompositorHost* TestCompositorHost::Create(const gfx::Rect& bounds) { | |
sky
2011/09/22 22:01:05
This conflicts with compositor_win on windows. Thi
tfarina
2011/09/22 22:13:29
Done.
| |
11 return NULL; | |
12 } | |
13 | |
14 } // namespace ui | |
OLD | NEW |