| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/gfx/compositor/test_compositor.h" | 5 #include "ui/gfx/compositor/test_compositor.h" |
| 6 | 6 |
| 7 #include "ui/gfx/compositor/test_texture.h" | 7 #include "ui/gfx/compositor/test_texture.h" |
| 8 | 8 |
| 9 namespace ui { | 9 namespace ui { |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 void TestCompositor::OnNotifyStart(bool clear) { | 34 void TestCompositor::OnNotifyStart(bool clear) { |
| 35 } | 35 } |
| 36 | 36 |
| 37 void TestCompositor::OnNotifyEnd() { | 37 void TestCompositor::OnNotifyEnd() { |
| 38 } | 38 } |
| 39 | 39 |
| 40 void TestCompositor::Blur(const gfx::Rect& bounds) { | 40 void TestCompositor::Blur(const gfx::Rect& bounds) { |
| 41 } | 41 } |
| 42 | 42 |
| 43 void TestCompositor::DrawTree() { |
| 44 #if !defined(USE_WEBKIT_COMPOSITOR) |
| 45 Compositor::DrawTree(); |
| 46 #endif |
| 47 } |
| 48 |
| 43 void TestCompositor::OnWidgetSizeChanged() { | 49 void TestCompositor::OnWidgetSizeChanged() { |
| 44 } | 50 } |
| 45 | 51 |
| 46 } // namespace ui | 52 } // namespace ui |
| OLD | NEW |