| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROME_BROWSER_ANDROID_COMPOSITOR_LAYER_CONTENT_LAYER_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_COMPOSITOR_LAYER_CONTENT_LAYER_H_ |
| 6 #define CHROME_BROWSER_ANDROID_COMPOSITOR_LAYER_CONTENT_LAYER_H_ | 6 #define CHROME_BROWSER_ANDROID_COMPOSITOR_LAYER_CONTENT_LAYER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "chrome/browser/android/compositor/layer/layer.h" | 10 #include "chrome/browser/android/compositor/layer/layer.h" |
| 11 #include "ui/gfx/geometry/rect.h" | 11 #include "ui/gfx/geometry/rect.h" |
| 12 #include "ui/gfx/size.h" | 12 #include "ui/gfx/geometry/size.h" |
| 13 | 13 |
| 14 namespace cc { | 14 namespace cc { |
| 15 class Layer; | 15 class Layer; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace chrome { | 18 namespace chrome { |
| 19 namespace android { | 19 namespace android { |
| 20 | 20 |
| 21 class TabContentManager; | 21 class TabContentManager; |
| 22 class ThumbnailLayer; | 22 class ThumbnailLayer; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 TabContentManager* tab_content_manager_; | 65 TabContentManager* tab_content_manager_; |
| 66 | 66 |
| 67 DISALLOW_COPY_AND_ASSIGN(ContentLayer); | 67 DISALLOW_COPY_AND_ASSIGN(ContentLayer); |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 } // namespace android | 70 } // namespace android |
| 71 } // namespace chrome | 71 } // namespace chrome |
| 72 | 72 |
| 73 #endif // CHROME_BROWSER_ANDROID_COMPOSITOR_LAYER_CONTENT_LAYER_H_ | 73 #endif // CHROME_BROWSER_ANDROID_COMPOSITOR_LAYER_CONTENT_LAYER_H_ |
| OLD | NEW |