OLD | NEW |
---|---|
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #ifndef CONTENT_PUBLIC_RENDERER_ANDROID_SYNCHRONOUS_COMPOSTIOR_ | 5 #ifndef CONTENT_PUBLIC_RENDERER_ANDROID_SYNCHRONOUS_COMPOSTIOR_ |
6 #define CONTENT_PUBLIC_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_ | 6 #define CONTENT_PUBLIC_RENDERER_ANDROID_SYNCHRONOUS_COMPOSTIOR_ |
joth
2013/05/28 17:36:24
you fixed the wrong line here :)
(PRESUBMIT used
mkosiba (inactive)
2013/05/29 13:18:24
Done.
| |
7 | 7 |
8 #include "ui/gfx/rect.h" | 8 #include "ui/gfx/rect.h" |
9 #include "ui/gfx/size.h" | 9 #include "ui/gfx/size.h" |
10 | 10 |
11 class SkCanvas; | 11 class SkCanvas; |
12 | 12 |
13 namespace gfx { | 13 namespace gfx { |
14 class Transform; | 14 class Transform; |
15 }; | 15 }; |
16 | 16 |
(...skipping 27 matching lines...) Expand all Loading... | |
44 const gfx::Transform& transform, | 44 const gfx::Transform& transform, |
45 gfx::Rect damage_area) = 0; | 45 gfx::Rect damage_area) = 0; |
46 | 46 |
47 protected: | 47 protected: |
48 virtual ~SynchronousCompositor() {} | 48 virtual ~SynchronousCompositor() {} |
49 }; | 49 }; |
50 | 50 |
51 } // namespace content | 51 } // namespace content |
52 | 52 |
53 #endif // CONTENT_PUBLIC_RENDERER_ANDROID_SYNCHRONOUS_COMPOSTIOR_ | 53 #endif // CONTENT_PUBLIC_RENDERER_ANDROID_SYNCHRONOUS_COMPOSTIOR_ |
OLD | NEW |