| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 package org.chromium.ui; | 5 package org.chromium.ui; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * Provide Android internal resources to Chrome's ui layer. This allows classes | 8 * Provide Android internal resources to Chrome's ui layer. This allows classes |
| 9 * that access resources via org.chromium.ui.R to function properly in webview. | 9 * that access resources via org.chromium.ui.R to function properly in webview. |
| 10 * In a normal Chrome build, ui resources live in a res folder in the ui layer | 10 * In a normal Chrome build, ui resources live in a res folder in the ui layer |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 public static int color_picker_button_red; | 29 public static int color_picker_button_red; |
| 30 public static int color_picker_button_cyan; | 30 public static int color_picker_button_cyan; |
| 31 public static int color_picker_button_blue; | 31 public static int color_picker_button_blue; |
| 32 public static int color_picker_button_green; | 32 public static int color_picker_button_green; |
| 33 public static int color_picker_button_magenta; | 33 public static int color_picker_button_magenta; |
| 34 public static int color_picker_button_yellow; | 34 public static int color_picker_button_yellow; |
| 35 public static int color_picker_button_black; | 35 public static int color_picker_button_black; |
| 36 public static int color_picker_button_white; | 36 public static int color_picker_button_white; |
| 37 } | 37 } |
| 38 public static final class id { | 38 public static final class id { |
| 39 public static int autofill_label; | 39 public static int dropdown_label; |
| 40 public static int autofill_popup_window; | 40 public static int dropdown_popup_window; |
| 41 public static int autofill_sublabel; | 41 public static int dropdown_sublabel; |
| 42 public static int selected_color_view; | 42 public static int selected_color_view; |
| 43 public static int title; | 43 public static int title; |
| 44 public static int more_colors_button; | 44 public static int more_colors_button; |
| 45 public static int color_picker_advanced; | 45 public static int color_picker_advanced; |
| 46 public static int color_picker_simple; | 46 public static int color_picker_simple; |
| 47 public static int color_button_swatch; | 47 public static int color_button_swatch; |
| 48 public static int more_colors_button_border; | 48 public static int more_colors_button_border; |
| 49 public static int color_picker_simple_border; | 49 public static int color_picker_simple_border; |
| 50 public static int gradient; | 50 public static int gradient; |
| 51 public static int text; | 51 public static int text; |
| 52 public static int seek_bar; | 52 public static int seek_bar; |
| 53 } | 53 } |
| 54 public static final class layout { | 54 public static final class layout { |
| 55 public static int autofill_text; | 55 public static int dropdown_item; |
| 56 public static int color_picker_dialog_title; | 56 public static int color_picker_dialog_title; |
| 57 public static int color_picker_dialog_content; | 57 public static int color_picker_dialog_content; |
| 58 public static int color_picker_advanced_component; | 58 public static int color_picker_advanced_component; |
| 59 } | 59 } |
| 60 public static final class drawable { | 60 public static final class drawable { |
| 61 public static int color_button_background; | 61 public static int color_button_background; |
| 62 public static int color_picker_advanced_select_handle; | 62 public static int color_picker_advanced_select_handle; |
| 63 } | 63 } |
| 64 public static final class style { | 64 public static final class style { |
| 65 public static int AutofillPopupWindow; | 65 public static int DropdownPopupWindow; |
| 66 } | 66 } |
| 67 public static final class color { | 67 public static final class color { |
| 68 public static int autofill_dark_divider_color; | 68 public static int dropdown_dark_divider_color; |
| 69 public static int autofill_divider_color; | 69 public static int dropdown_divider_color; |
| 70 public static int color_picker_border_color; | 70 public static int color_picker_border_color; |
| 71 } | 71 } |
| 72 public static final class dimen { | 72 public static final class dimen { |
| 73 public static int autofill_text_height; | 73 public static int dropdown_item_height; |
| 74 public static int autofill_text_divider_height; | 74 public static int dropdown_item_divider_height; |
| 75 public static int color_button_height; | 75 public static int color_button_height; |
| 76 public static int config_min_scaling_span; | 76 public static int config_min_scaling_span; |
| 77 public static int config_min_scaling_touch_major; | 77 public static int config_min_scaling_touch_major; |
| 78 } | 78 } |
| 79 } | 79 } |
| OLD | NEW |