| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 BLIMP_CLIENT_COMPOSITOR_BLIMP_COMPOSITOR_ANDROID_H_ | 5 #ifndef BLIMP_CLIENT_APP_ANDROID_BLIMP_COMPOSITOR_ANDROID_H_ |
| 6 #define BLIMP_CLIENT_COMPOSITOR_BLIMP_COMPOSITOR_ANDROID_H_ | 6 #define BLIMP_CLIENT_APP_ANDROID_BLIMP_COMPOSITOR_ANDROID_H_ |
| 7 | 7 |
| 8 #include "base/android/jni_android.h" | 8 #include "base/android/jni_android.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "blimp/client/compositor/blimp_compositor.h" | 10 #include "blimp/client/feature/compositor/blimp_compositor.h" |
| 11 #include "ui/gfx/geometry/size.h" | 11 #include "ui/gfx/geometry/size.h" |
| 12 #include "ui/gfx/native_widget_types.h" | 12 #include "ui/gfx/native_widget_types.h" |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class SingleThreadTaskRunner; | 15 class SingleThreadTaskRunner; |
| 16 class Thread; | 16 class Thread; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace cc { | 19 namespace cc { |
| 20 class LayerTreeHost; | 20 class LayerTreeHost; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 // True if the |portrait_width_| and |landscape_width_| represent the device's | 65 // True if the |portrait_width_| and |landscape_width_| represent the device's |
| 66 // physical dimensions, including any area occupied by system decorations. | 66 // physical dimensions, including any area occupied by system decorations. |
| 67 bool real_size_supported_; | 67 bool real_size_supported_; |
| 68 | 68 |
| 69 DISALLOW_COPY_AND_ASSIGN(BlimpCompositorAndroid); | 69 DISALLOW_COPY_AND_ASSIGN(BlimpCompositorAndroid); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace client | 72 } // namespace client |
| 73 } // namespace blimp | 73 } // namespace blimp |
| 74 | 74 |
| 75 #endif // BLIMP_CLIENT_COMPOSITOR_BLIMP_COMPOSITOR_ANDROID_H_ | 75 #endif // BLIMP_CLIENT_APP_ANDROID_BLIMP_COMPOSITOR_ANDROID_H_ |
| OLD | NEW |