| 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.content; | 5 package org.chromium.content; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * Provide Android internal resources to Chrome's content layer. This allows | 8 * Provide Android internal resources to Chrome's content layer. This allows |
| 9 * classes that access resources via org.chromium.content.R to function properly | 9 * classes that access resources via org.chromium.content.R to function properly |
| 10 * in webview. In a normal Chrome build, content resources live in a res folder | 10 * in webview. In a normal Chrome build, content resources live in a res folder |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 public static int accessibility_date_picker_month; | 59 public static int accessibility_date_picker_month; |
| 60 public static int accessibility_date_picker_week; | 60 public static int accessibility_date_picker_week; |
| 61 public static int accessibility_date_picker_year; | 61 public static int accessibility_date_picker_year; |
| 62 public static int accessibility_datetime_picker_date; | 62 public static int accessibility_datetime_picker_date; |
| 63 public static int accessibility_datetime_picker_time; | 63 public static int accessibility_datetime_picker_time; |
| 64 public static int actionbar_share; | 64 public static int actionbar_share; |
| 65 public static int actionbar_web_search; | 65 public static int actionbar_web_search; |
| 66 public static int date_picker_dialog_clear; | 66 public static int date_picker_dialog_clear; |
| 67 public static int date_picker_dialog_set; | 67 public static int date_picker_dialog_set; |
| 68 public static int date_picker_dialog_title; | 68 public static int date_picker_dialog_title; |
| 69 public static int date_picker_dialog_other_button_label; |
| 69 public static int date_time_picker_dialog_title; | 70 public static int date_time_picker_dialog_title; |
| 70 public static int media_player_error_button; | 71 public static int media_player_error_button; |
| 71 public static int media_player_error_text_invalid_progressive_playback; | 72 public static int media_player_error_text_invalid_progressive_playback; |
| 72 public static int media_player_error_text_unknown; | 73 public static int media_player_error_text_unknown; |
| 73 public static int media_player_error_title; | 74 public static int media_player_error_title; |
| 74 public static int media_player_loading_video; | 75 public static int media_player_loading_video; |
| 75 public static int month_picker_dialog_title; | 76 public static int month_picker_dialog_title; |
| 76 public static int profiler_error_toast; | 77 public static int profiler_error_toast; |
| 77 public static int profiler_no_storage_toast; | 78 public static int profiler_no_storage_toast; |
| 78 public static int profiler_started_toast; | 79 public static int profiler_started_toast; |
| 79 public static int profiler_stopped_toast; | 80 public static int profiler_stopped_toast; |
| 80 public static int time_picker_dialog_am; | 81 public static int time_picker_dialog_am; |
| 81 public static int time_picker_dialog_hour_minute_separator; | 82 public static int time_picker_dialog_hour_minute_separator; |
| 82 public static int time_picker_dialog_minute_second_separator; | 83 public static int time_picker_dialog_minute_second_separator; |
| 83 public static int time_picker_dialog_second_subsecond_separator; | 84 public static int time_picker_dialog_second_subsecond_separator; |
| 84 public static int time_picker_dialog_pm; | 85 public static int time_picker_dialog_pm; |
| 85 public static int week_picker_dialog_title; | 86 public static int week_picker_dialog_title; |
| 86 } | 87 } |
| 87 public static final class style { | 88 public static final class style { |
| 88 public static int SelectPopupDialog; | 89 public static int SelectPopupDialog; |
| 89 } | 90 } |
| 90 } | 91 } |
| OLD | NEW |