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 CHROME_BROWSER_ANDROID_COMPOSITOR_SCENE_LAYER_CONTEXTUAL_SEARCH_SCENE_LA
YER_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_COMPOSITOR_SCENE_LAYER_CONTEXTUAL_SEARCH_SCENE_LA
YER_H_ |
6 #define CHROME_BROWSER_ANDROID_COMPOSITOR_SCENE_LAYER_CONTEXTUAL_SEARCH_SCENE_LA
YER_H_ | 6 #define CHROME_BROWSER_ANDROID_COMPOSITOR_SCENE_LAYER_CONTEXTUAL_SEARCH_SCENE_LA
YER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 jfloat search_term_opacity, | 76 jfloat search_term_opacity, |
77 jfloat search_caption_animation_percentage, | 77 jfloat search_caption_animation_percentage, |
78 jboolean search_caption_visible, | 78 jboolean search_caption_visible, |
79 jboolean search_bar_border_visible, | 79 jboolean search_bar_border_visible, |
80 jfloat search_bar_border_height, | 80 jfloat search_bar_border_height, |
81 jboolean search_bar_shadow_visible, | 81 jboolean search_bar_shadow_visible, |
82 jfloat search_bar_shadow_opacity, | 82 jfloat search_bar_shadow_opacity, |
83 jboolean search_provider_icon_sprite_visible, | 83 jboolean search_provider_icon_sprite_visible, |
84 jfloat search_provider_icon_sprite_completion_percentage, | 84 jfloat search_provider_icon_sprite_completion_percentage, |
85 jboolean thumbnail_visible, | 85 jboolean thumbnail_visible, |
| 86 jfloat thumbnail_visibility_percentage, |
86 jint thumbnail_size, | 87 jint thumbnail_size, |
87 jstring j_thumbnail_url, | 88 jstring j_thumbnail_url, |
88 jfloat arrow_icon_opacity, | 89 jfloat arrow_icon_opacity, |
89 jfloat arrow_icon_rotation, | 90 jfloat arrow_icon_rotation, |
90 jfloat close_icon_opacity, | 91 jfloat close_icon_opacity, |
91 jboolean progress_bar_visible, | 92 jboolean progress_bar_visible, |
92 jfloat progress_bar_height, | 93 jfloat progress_bar_height, |
93 jfloat progress_bar_opacity, | 94 jfloat progress_bar_opacity, |
94 jint progress_bar_completion, | 95 jint progress_bar_completion, |
95 jobject j_profile); | 96 jobject j_profile); |
(...skipping 26 matching lines...) Expand all Loading... |
122 | 123 |
123 DISALLOW_COPY_AND_ASSIGN(ContextualSearchSceneLayer); | 124 DISALLOW_COPY_AND_ASSIGN(ContextualSearchSceneLayer); |
124 }; | 125 }; |
125 | 126 |
126 bool RegisterContextualSearchSceneLayer(JNIEnv* env); | 127 bool RegisterContextualSearchSceneLayer(JNIEnv* env); |
127 | 128 |
128 } // namespace android | 129 } // namespace android |
129 } // namespace chrome | 130 } // namespace chrome |
130 | 131 |
131 #endif // CHROME_BROWSER_ANDROID_COMPOSITOR_SCENE_LAYER_CONTEXTUAL_SEARCH_SCENE
_LAYER_H_ | 132 #endif // CHROME_BROWSER_ANDROID_COMPOSITOR_SCENE_LAYER_CONTEXTUAL_SEARCH_SCENE
_LAYER_H_ |
OLD | NEW |