Merge "Moving LauncherAccessibilityDelegate to accessibility package" into ub-launcher3-burnaby

This commit is contained in:
Sunny Goyal
2015-05-20 04:15:33 +00:00
committed by Android (Google) Code Review
12 changed files with 42 additions and 18 deletions

View File

@@ -3012,7 +3012,7 @@ public class CellLayout extends ViewGroup implements BubbleTextShadowHandler {
// 2. When long clicking on an empty cell in a CellLayout, we save information about the
// cellX and cellY coordinates and which page was clicked. We then set this as a tag on
// the CellLayout that was long clicked
static final class CellInfo {
public static final class CellInfo {
View cell;
int cellX = -1;
int cellY = -1;
@@ -3021,7 +3021,7 @@ public class CellLayout extends ViewGroup implements BubbleTextShadowHandler {
long screenId;
long container;
CellInfo(View v, ItemInfo info) {
public CellInfo(View v, ItemInfo info) {
cell = v;
cellX = info.cellX;
cellY = info.cellY;