| 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 18 matching lines...) Expand all Loading... |
| 29 jint search_bar_background_resource_id, | 29 jint search_bar_background_resource_id, |
| 30 jint search_context_resource_id, | 30 jint search_context_resource_id, |
| 31 jint search_term_resource_id, | 31 jint search_term_resource_id, |
| 32 jint search_bar_shadow_resource_id, | 32 jint search_bar_shadow_resource_id, |
| 33 jint search_provider_icon_resource_id, | 33 jint search_provider_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 jint peek_promo_ripple_resource_id, |
| 40 jint peek_promo_text_resource_id, |
| 39 jobject jcontent_view_core, | 41 jobject jcontent_view_core, |
| 40 jboolean search_promo_visible, | 42 jboolean search_promo_visible, |
| 41 jfloat search_promo_height, | 43 jfloat search_promo_height, |
| 42 jfloat search_promo_opacity, | 44 jfloat search_promo_opacity, |
| 45 jboolean search_peek_promo_visible, |
| 46 jfloat search_peek_promo_height, |
| 47 jfloat search_peek_promo_padding, |
| 48 jfloat search_peek_promo_ripple_width, |
| 49 jfloat search_peek_promo_ripple_opacity, |
| 50 jfloat search_peek_promo_text_opacity, |
| 43 jfloat search_panel_X, | 51 jfloat search_panel_X, |
| 44 jfloat search_panel_y, | 52 jfloat search_panel_y, |
| 45 jfloat search_panel_width, | 53 jfloat search_panel_width, |
| 46 jfloat search_panel_height, | 54 jfloat search_panel_height, |
| 47 jfloat search_bar_margin_side, | 55 jfloat search_bar_margin_side, |
| 48 jfloat search_bar_height, | 56 jfloat search_bar_height, |
| 49 jfloat search_context_opacity, | 57 jfloat search_context_opacity, |
| 50 jfloat search_term_opacity, | 58 jfloat search_term_opacity, |
| 51 jboolean search_bar_border_visible, | 59 jboolean search_bar_border_visible, |
| 52 jfloat search_bar_border_y, | |
| 53 jfloat search_bar_border_height, | 60 jfloat search_bar_border_height, |
| 54 jboolean search_bar_shadow_visible, | 61 jboolean search_bar_shadow_visible, |
| 55 jfloat search_bar_shadow_opacity, | 62 jfloat search_bar_shadow_opacity, |
| 56 jfloat arrow_icon_opacity, | 63 jfloat arrow_icon_opacity, |
| 57 jfloat arrow_icon_rotation, | 64 jfloat arrow_icon_rotation, |
| 58 jfloat close_icon_opacity, | 65 jfloat close_icon_opacity, |
| 59 jboolean progress_bar_visible, | 66 jboolean progress_bar_visible, |
| 60 jfloat progress_bar_y, | |
| 61 jfloat progress_bar_height, | 67 jfloat progress_bar_height, |
| 62 jfloat progress_bar_opacity, | 68 jfloat progress_bar_opacity, |
| 63 jint progress_bar_completion, | 69 jint progress_bar_completion, |
| 64 jobject jresource_manager); | 70 jobject jresource_manager); |
| 65 | 71 |
| 66 private: | 72 private: |
| 67 scoped_refptr<ContextualSearchLayer> contextual_search_layer_; | 73 scoped_refptr<ContextualSearchLayer> contextual_search_layer_; |
| 68 | 74 |
| 69 DISALLOW_COPY_AND_ASSIGN(ContextualSearchSceneLayer); | 75 DISALLOW_COPY_AND_ASSIGN(ContextualSearchSceneLayer); |
| 70 }; | 76 }; |
| 71 | 77 |
| 72 bool RegisterContextualSearchSceneLayer(JNIEnv* env); | 78 bool RegisterContextualSearchSceneLayer(JNIEnv* env); |
| 73 | 79 |
| 74 } // namespace android | 80 } // namespace android |
| 75 } // namespace chrome | 81 } // namespace chrome |
| 76 | 82 |
| 77 #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 |