HomeSort by relevance Sort by last modified time
    Searched defs:appRect (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/appmenu/
AppMenuHandler.java 95 Rect appRect = new Rect();
96 mActivity.getWindow().getDecorView().getWindowVisibleDisplayFrame(appRect);
98 // Use full size of window for abnormal appRect.
99 if (appRect.left < 0 && appRect.top < 0) {
100 appRect.left = 0;
101 appRect.top = 0;
102 appRect.right = mActivity.getWindow().getDecorView().getWidth();
103 appRect.bottom = mActivity.getWindow().getDecorView().getHeight();
108 mAppMenu.show(wrapper, anchorView, isByHardwareButton, rotation, appRect, pt.y)
    [all...]
  /external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/omnibox/
SuggestionPopup.java 107 Rect appRect = new Rect();
109 getWindowVisibleDisplayFrame(appRect);
113 int popupHeight = appRect.height() - dropDownItemHeight;

Completed in 331 milliseconds