Home
last modified time | relevance | path

Searched refs:hostWindow (Results 1 – 19 of 19) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
DPlatformScreen.cpp48 return root->hostWindow(); in toHostWindow()
53 HostWindow* hostWindow = toHostWindow(widget); in screenDepth() local
54 if (!hostWindow) in screenDepth()
56 return hostWindow->screenInfo().depth; in screenDepth()
61 HostWindow* hostWindow = toHostWindow(widget); in screenDepthPerComponent() local
62 if (!hostWindow) in screenDepthPerComponent()
64 return hostWindow->screenInfo().depthPerComponent; in screenDepthPerComponent()
69 HostWindow* hostWindow = toHostWindow(widget); in screenIsMonochrome() local
70 if (!hostWindow) in screenIsMonochrome()
72 return hostWindow->screenInfo().isMonochrome; in screenIsMonochrome()
[all …]
DPopupMenuClient.h75 virtual HostWindow* hostWindow() const = 0;
DWidget.h91 virtual HostWindow* hostWindow() const { ASSERT_NOT_REACHED(); return 0; } in hostWindow() function
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DFramelessScrollView.cpp77 if (HostWindow* h = hostWindow()) in invalidateRect()
81 HostWindow* FramelessScrollView::hostWindow() const in hostWindow() function in WebCore::FramelessScrollView
DScrollView.cpp526 HostWindow* window = hostWindow(); in scrollContents()
566 hostWindow()->scroll(scrollDelta, rectToScroll, clipRect); in scrollContentsFastPath()
572 hostWindow()->invalidateContentsForSlowScroll(updateRect); in scrollContentsSlowPath()
629 HostWindow* window = hostWindow(); in contentsToScreen()
637 HostWindow* window = hostWindow(); in screenToContents()
795 if (HostWindow* window = hostWindow()) in repaintContentRectangle()
969 HostWindow* window = hostWindow(); in updateOverhangAreas()
1120 HostWindow* window = hostWindow(); in addPanScrollIcon()
1130 HostWindow* window = hostWindow(); in removePanScrollIcon()
DFramelessScrollView.h80 virtual HostWindow* hostWindow() const;
DScrollView.h63 virtual HostWindow* hostWindow() const = 0;
/external/chromium_org/third_party/WebKit/Source/web/
DValidationMessageClientImpl.cpp83 m_lastAnchorRectInScreen = currentView()->hostWindow()->rootViewToScreen(anchorInRootView); in showValidationMessage()
143 IntRect newAnchorRectInScreen = currentView()->hostWindow()->rootViewToScreen(newAnchorRect); in checkAnchorStatus()
DAutofillPopupMenuClient.cpp230 HostWindow* AutofillPopupMenuClient::hostWindow() const in hostWindow() function in blink::AutofillPopupMenuClient
232 return m_textField->document().view()->hostWindow(); in hostWindow()
DAutofillPopupMenuClient.h98 virtual WebCore::HostWindow* hostWindow() const;
DPopupListBox.h130 virtual HostWindow* hostWindow() const OVERRIDE;
DPopupListBox.cpp288 HostWindow* PopupListBox::hostWindow() const in hostWindow() function in WebCore::PopupListBox
292 return parent() ? parent()->hostWindow() : 0; in hostWindow()
923 if (hostWindow()) in layout()
DWebPluginContainerImpl.cpp389 parent()->hostWindow()->scroll(scrollDelta, damageRect, damageRect); in scrollRect()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderMenuList.h103 virtual HostWindow* hostWindow() const OVERRIDE;
DRenderMenuList.cpp514 HostWindow* RenderMenuList::hostWindow() const in hostWindow() function in WebCore::RenderMenuList
516 return document().view()->hostWindow(); in hostWindow()
/external/chromium_org/third_party/WebKit/Source/web/tests/
DPopupMenuTest.cpp120 virtual HostWindow* hostWindow() const { return 0; } in hostWindow() function in __anon3228074c0111::TestPopupMenuClient
/external/chromium_org/third_party/WebKit/Source/core/frame/
DFrameView.cpp406 if (HostWindow* window = hostWindow()) in invalidateRect()
451 if (HostWindow* window = hostWindow()) { in scheduleAnimation()
1438 hostWindow()->scroll(scrollDelta, rectToScroll, clipRect); in scrollContentsFastPath()
1496 hostWindow()->scroll(scrollDelta, rectToScroll, clipRect); in scrollContentsFastPath()
1514 hostWindow()->invalidateContentsAndRootView(updateRect); in scrollContentsFastPath()
1770 HostWindow* FrameView::hostWindow() const in hostWindow() function in WebCore::FrameView
DFrameView.h68 virtual HostWindow* hostWindow() const;
/external/chromium_org/third_party/WebKit/Source/core/page/
DEventHandler.cpp2858 …IntPoint globalPosition = view->hostWindow()->rootViewToScreen(IntRect(position, IntSize())).locat… in sendContextMenuEventForKey()