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 <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/android/jni_android.h" | 10 #include "base/android/jni_android.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 jint search_icon_resource_id, | 33 jint search_icon_resource_id, |
34 jint arrow_up_resource_id, | 34 jint arrow_up_resource_id, |
35 jint close_icon_resource_id, | 35 jint close_icon_resource_id, |
36 jint progress_bar_background_resource_id, | 36 jint progress_bar_background_resource_id, |
37 jint progress_bar_resource_id, | 37 jint progress_bar_resource_id, |
38 jint search_promo_resource_id, | 38 jint search_promo_resource_id, |
39 jobject jcontent_view_core, | 39 jobject jcontent_view_core, |
40 jboolean search_promo_visible, | 40 jboolean search_promo_visible, |
41 jfloat search_promo_height, | 41 jfloat search_promo_height, |
42 jfloat search_promo_opacity, | 42 jfloat search_promo_opacity, |
| 43 jfloat search_panel_X, |
43 jfloat search_panel_y, | 44 jfloat search_panel_y, |
44 jfloat search_panel_width, | 45 jfloat search_panel_width, |
| 46 jfloat search_panel_height, |
45 jfloat search_bar_margin_top, | 47 jfloat search_bar_margin_top, |
46 jfloat search_bar_margin_side, | 48 jfloat search_bar_margin_side, |
47 jfloat search_bar_height, | 49 jfloat search_bar_height, |
48 jfloat search_bar_text_opacity, | 50 jfloat search_bar_text_opacity, |
49 jboolean search_bar_border_visible, | 51 jboolean search_bar_border_visible, |
50 jfloat search_bar_border_y, | 52 jfloat search_bar_border_y, |
51 jfloat search_bar_border_height, | 53 jfloat search_bar_border_height, |
52 jboolean search_bar_shadow_visible, | 54 jboolean search_bar_shadow_visible, |
53 jfloat search_bar_shadow_opacity, | 55 jfloat search_bar_shadow_opacity, |
54 jboolean side_search_provider_icon_visible, | 56 jboolean side_search_provider_icon_visible, |
(...skipping 17 matching lines...) Expand all Loading... |
72 | 74 |
73 DISALLOW_COPY_AND_ASSIGN(ContextualSearchSceneLayer); | 75 DISALLOW_COPY_AND_ASSIGN(ContextualSearchSceneLayer); |
74 }; | 76 }; |
75 | 77 |
76 bool RegisterContextualSearchSceneLayer(JNIEnv* env); | 78 bool RegisterContextualSearchSceneLayer(JNIEnv* env); |
77 | 79 |
78 } // namespace android | 80 } // namespace android |
79 } // namespace chrome | 81 } // namespace chrome |
80 | 82 |
81 #endif // CHROME_BROWSER_ANDROID_COMPOSITOR_SCENE_LAYER_CONTEXTUAL_SEARCH_SCENE
_LAYER_H_ | 83 #endif // CHROME_BROWSER_ANDROID_COMPOSITOR_SCENE_LAYER_CONTEXTUAL_SEARCH_SCENE
_LAYER_H_ |
OLD | NEW |