| 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 #include "chrome/browser/android/compositor/layer/tab_layer.h" | 5 #include "chrome/browser/android/compositor/layer/tab_layer.h" |
| 6 | 6 |
| 7 #include "base/i18n/rtl.h" | 7 #include "base/i18n/rtl.h" |
| 8 #include "cc/layers/layer.h" | 8 #include "cc/layers/layer.h" |
| 9 #include "cc/layers/layer_lists.h" | 9 #include "cc/layers/layer_collections.h" |
| 10 #include "cc/layers/nine_patch_layer.h" | 10 #include "cc/layers/nine_patch_layer.h" |
| 11 #include "cc/layers/solid_color_layer.h" | 11 #include "cc/layers/solid_color_layer.h" |
| 12 #include "cc/layers/ui_resource_layer.h" | 12 #include "cc/layers/ui_resource_layer.h" |
| 13 #include "cc/resources/scoped_ui_resource.h" | 13 #include "cc/resources/scoped_ui_resource.h" |
| 14 #include "chrome/browser/android/compositor/decoration_title.h" | 14 #include "chrome/browser/android/compositor/decoration_title.h" |
| 15 #include "chrome/browser/android/compositor/layer/content_layer.h" | 15 #include "chrome/browser/android/compositor/layer/content_layer.h" |
| 16 #include "chrome/browser/android/compositor/layer/toolbar_layer.h" | 16 #include "chrome/browser/android/compositor/layer/toolbar_layer.h" |
| 17 #include "chrome/browser/android/compositor/layer_title_cache.h" | 17 #include "chrome/browser/android/compositor/layer_title_cache.h" |
| 18 #include "chrome/browser/android/compositor/tab_content_manager.h" | 18 #include "chrome/browser/android/compositor/tab_content_manager.h" |
| 19 #include "content/public/browser/android/compositor.h" | 19 #include "content/public/browser/android/compositor.h" |
| (...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 title_->AddChild(layer); | 634 title_->AddChild(layer); |
| 635 } | 635 } |
| 636 } | 636 } |
| 637 | 637 |
| 638 if (title) | 638 if (title) |
| 639 title->SetUIResourceIds(); | 639 title->SetUIResourceIds(); |
| 640 } | 640 } |
| 641 | 641 |
| 642 } // namespace android | 642 } // namespace android |
| 643 } // namespace chrome | 643 } // namespace chrome |
| OLD | NEW |