| 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_TAB_LAYER_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_COMPOSITOR_LAYER_TAB_LAYER_H_ |
| 6 #define CHROME_BROWSER_ANDROID_COMPOSITOR_LAYER_TAB_LAYER_H_ | 6 #define CHROME_BROWSER_ANDROID_COMPOSITOR_LAYER_TAB_LAYER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 float border_scale, | 79 float border_scale, |
| 80 float saturation, | 80 float saturation, |
| 81 float brightness, | 81 float brightness, |
| 82 float close_btn_width, | 82 float close_btn_width, |
| 83 float static_to_view_blend, | 83 float static_to_view_blend, |
| 84 float content_width, | 84 float content_width, |
| 85 float content_height, | 85 float content_height, |
| 86 float view_width, | 86 float view_width, |
| 87 float view_height, | 87 float view_height, |
| 88 bool show_toolbar, | 88 bool show_toolbar, |
| 89 int default_theme_color, |
| 89 int toolbar_background_color, | 90 int toolbar_background_color, |
| 90 bool anonymize_toolbar, | 91 bool anonymize_toolbar, |
| 91 int toolbar_textbox_resource_id, | 92 int toolbar_textbox_resource_id, |
| 92 int toolbar_textbox_background_color, | 93 int toolbar_textbox_background_color, |
| 93 float toolbar_textbox_alpha, | 94 float toolbar_textbox_alpha, |
| 94 float toolbar_alpha, | 95 float toolbar_alpha, |
| 95 float toolbar_y_offset, | 96 float toolbar_y_offset, |
| 96 float side_border_scale, | 97 float side_border_scale, |
| 97 bool attach_content, | 98 bool attach_content, |
| 98 bool inset_border); | 99 bool inset_border); |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 scoped_refptr<cc::UIResourceLayer> back_logo_; | 148 scoped_refptr<cc::UIResourceLayer> back_logo_; |
| 148 float brightness_; | 149 float brightness_; |
| 149 | 150 |
| 150 DISALLOW_COPY_AND_ASSIGN(TabLayer); | 151 DISALLOW_COPY_AND_ASSIGN(TabLayer); |
| 151 }; | 152 }; |
| 152 | 153 |
| 153 } // namespace android | 154 } // namespace android |
| 154 } // namespace chrome | 155 } // namespace chrome |
| 155 | 156 |
| 156 #endif // CHROME_BROWSER_ANDROID_COMPOSITOR_LAYER_TAB_LAYER_H_ | 157 #endif // CHROME_BROWSER_ANDROID_COMPOSITOR_LAYER_TAB_LAYER_H_ |
| OLD | NEW |