Searched refs:WebRect (Results 1 - 25 of 158) sorted by relevance

1234567

/external/chromium_org/chrome/test/chromedriver/
H A Dbasic_types.cc24 WebRect::WebRect() : origin(0, 0), size(0, 0) {} function in class:WebRect
26 WebRect::WebRect(int x, int y, int width, int height) function in class:WebRect
29 WebRect::WebRect(const WebPoint& origin, const WebSize& size) function in class:WebRect
32 WebRect::~WebRect() {}
34 int WebRect::X() const { return origin.x; }
36 int WebRect
[all...]
H A Dbasic_types.h28 struct WebRect { struct
29 WebRect();
30 WebRect(int x, int y, int width, int height);
31 WebRect(const WebPoint& origin, const WebSize& size);
32 ~WebRect();
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebScrollbarThemeGeometry.h29 #include "WebRect.h"
46 virtual WebRect trackRect(WebScrollbar*) = 0;
47 virtual WebRect thumbRect(WebScrollbar*) = 0;
50 virtual WebRect backButtonStartRect(WebScrollbar*) = 0;
51 virtual WebRect backButtonEndRect(WebScrollbar*) = 0;
52 virtual WebRect forwardButtonStartRect(WebScrollbar*) = 0;
53 virtual WebRect forwardButtonEndRect(WebScrollbar*) = 0;
54 virtual WebRect constrainTrackRectToTrackPieces(WebScrollbar*, const WebRect&) = 0;
55 virtual void splitTrack(WebScrollbar*, const WebRect
[all...]
H A DWebScrollbarThemePainter.h36 struct WebRect;
51 BLINK_EXPORT void paintScrollbarBackground(WebCanvas*, const WebRect&);
52 BLINK_EXPORT void paintTrackBackground(WebCanvas*, const WebRect&);
53 BLINK_EXPORT void paintBackTrackPart(WebCanvas*, const WebRect&);
54 BLINK_EXPORT void paintForwardTrackPart(WebCanvas*, const WebRect&);
55 BLINK_EXPORT void paintBackButtonStart(WebCanvas*, const WebRect&);
56 BLINK_EXPORT void paintBackButtonEnd(WebCanvas*, const WebRect&);
57 BLINK_EXPORT void paintForwardButtonStart(WebCanvas*, const WebRect&);
58 BLINK_EXPORT void paintForwardButtonEnd(WebCanvas*, const WebRect&);
59 BLINK_EXPORT void paintTickmarks(WebCanvas*, const WebRect
[all...]
H A DWebRect.h46 struct WebRect { struct in namespace:blink
54 WebRect() function in struct:blink::WebRect
62 WebRect(int x, int y, int width, int height) function in struct:blink::WebRect
71 WebRect(const IntRect& r) function in struct:blink::WebRect
79 WebRect& operator=(const IntRect& r)
93 WebRect(const gfx::Rect& r) function in struct:blink::WebRect
101 WebRect& operator=(const gfx::Rect& r)
117 inline bool operator==(const WebRect& a, const WebRect& b)
122 inline bool operator!=(const WebRect
[all...]
H A DWebContentLayerClient.h34 struct WebRect;
50 virtual void paintContents(WebCanvas*, const WebRect& clip, bool canPaintLCDText, GraphicsContextStatus = GraphicsContextEnabled) = 0;
H A DWebNinePatchLayer.h36 #include "WebRect.h"
47 virtual void setAperture(const WebRect&) = 0;
48 virtual void setBorder(const WebRect&) = 0;
H A DWebScreenInfo.h34 #include "WebRect.h"
59 WebRect rect;
69 WebRect availableRect;
H A DWebScrollbarBehavior.h11 struct WebRect;
23 virtual bool shouldSnapBackToDragOrigin(const WebPoint& eventPoint, const WebRect& scrollbarRect, bool isHorizontal) { return false; }
/external/chromium_org/third_party/WebKit/public/web/
H A DWebExternalPopupMenu.h36 struct WebRect;
40 virtual void show(const WebRect& bounds) = 0;
H A DWebDraggableRegion.h35 #include "../platform/WebRect.h"
42 WebRect bounds;
H A DWebPluginScrollbarClient.h31 struct WebRect;
38 virtual void invalidateScrollbarRect(WebPluginScrollbar*, const WebRect&) = 0;
39 virtual void getTickmarks(WebPluginScrollbar*, WebVector<WebRect>*) const = 0;
H A DWebPrintParams.h34 #include "../platform/WebRect.h"
42 WebRect printContentArea;
46 WebRect printableArea;
63 : printContentArea(WebRect(0, 0, paperSize.width, paperSize.height))
64 , printableArea(WebRect(0, 0, paperSize.width, paperSize.height))
69 WebPrintParams(const WebRect& printContentArea, const WebRect& printableArea, const WebSize& paperSize, int printerDPI, WebPrintScalingOption printScalingOption)
H A DWebWidgetClient.h37 #include "public/platform/WebRect.h"
52 virtual void didInvalidateRect(const WebRect&) { } argument
123 virtual WebRect windowRect() { return WebRect(); }
124 virtual void setWindowRect(const WebRect&) { } argument
130 virtual WebRect windowResizerRect() { return WebRect(); }
134 virtual WebRect rootWindowRect() { return WebRect(); }
H A DWebPluginScrollbar.h36 struct WebRect;
52 virtual void setLocation(const WebRect&) = 0;
68 virtual void paint(WebCanvas*, const WebRect&) = 0;
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebScrollbarThemeGeometryNative.h30 #include "public/platform/WebRect.h"
51 virtual WebRect trackRect(WebScrollbar*) OVERRIDE;
52 virtual WebRect thumbRect(WebScrollbar*) OVERRIDE;
55 virtual WebRect backButtonStartRect(WebScrollbar*) OVERRIDE;
56 virtual WebRect backButtonEndRect(WebScrollbar*) OVERRIDE;
57 virtual WebRect forwardButtonStartRect(WebScrollbar*) OVERRIDE;
58 virtual WebRect forwardButtonEndRect(WebScrollbar*) OVERRIDE;
59 virtual WebRect constrainTrackRectToTrackPieces(WebScrollbar*, const WebRect&) OVERRIDE;
60 virtual void splitTrack(WebScrollbar*, const WebRect
[all...]
H A DWebScrollbarThemeGeometryNative.cpp87 WebRect WebScrollbarThemeGeometryNative::trackRect(WebScrollbar* scrollbar)
93 WebRect WebScrollbarThemeGeometryNative::thumbRect(WebScrollbar* scrollbar)
111 WebRect WebScrollbarThemeGeometryNative::backButtonStartRect(WebScrollbar* scrollbar)
117 WebRect WebScrollbarThemeGeometryNative::backButtonEndRect(WebScrollbar* scrollbar)
123 WebRect WebScrollbarThemeGeometryNative::forwardButtonStartRect(WebScrollbar* scrollbar)
129 WebRect WebScrollbarThemeGeometryNative::forwardButtonEndRect(WebScrollbar* scrollbar)
135 WebRect WebScrollbarThemeGeometryNative::constrainTrackRectToTrackPieces(WebScrollbar* scrollbar, const WebRect& rect)
141 void WebScrollbarThemeGeometryNative::splitTrack(WebScrollbar* scrollbar, const WebRect& webTrack, WebRect
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dfullscreen_container.h11 struct WebRect;
24 virtual void InvalidateRect(const blink::WebRect&) = 0;
27 virtual void ScrollRect(int dx, int dy, const blink::WebRect&) = 0;
/external/chromium_org/cc/blink/
H A Dweb_nine_patch_layer_impl.h26 virtual void setAperture(const blink::WebRect& aperture);
27 virtual void setBorder(const blink::WebRect& border);
/external/chromium_org/content/renderer/
H A Ddisambiguation_popup_helper.h17 struct WebRect;
27 const blink::WebVector<blink::WebRect>& target_rects,
H A Dwebscrollbarbehavior_impl_gtkoraura.h19 const blink::WebRect& scrollbarRect,
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebScrollbarThemePainter.cpp33 #include "public/platform/WebRect.h"
44 void WebScrollbarThemePainter::paintScrollbarBackground(WebCanvas* canvas, const WebRect& rect)
54 void WebScrollbarThemePainter::paintTrackBackground(WebCanvas* canvas, const WebRect& rect)
61 void WebScrollbarThemePainter::paintBackTrackPart(WebCanvas* canvas, const WebRect& rect)
68 void WebScrollbarThemePainter::paintForwardTrackPart(WebCanvas* canvas, const WebRect& rect)
75 void WebScrollbarThemePainter::paintBackButtonStart(WebCanvas* canvas, const WebRect& rect)
82 void WebScrollbarThemePainter::paintBackButtonEnd(WebCanvas* canvas, const WebRect& rect)
89 void WebScrollbarThemePainter::paintForwardButtonStart(WebCanvas* canvas, const WebRect& rect)
96 void WebScrollbarThemePainter::paintForwardButtonEnd(WebCanvas* canvas, const WebRect& rect)
103 void WebScrollbarThemePainter::paintTickmarks(WebCanvas* canvas, const WebRect
[all...]
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_web_theme_engine_mac.h24 const blink::WebRect&,
32 const blink::WebRect&,
38 const blink::WebRect&,
/external/chromium_org/content/child/
H A Dwebthemeengine_impl_mac.h19 const blink::WebRect& rect,
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DFakeWebPlugin.h54 virtual void paint(WebCanvas*, const WebRect&) OVERRIDE { }
55 virtual void updateGeometry(const WebRect& frameRect, const WebRect& clipRect, const WebVector<WebRect>& cutOutsRects, bool isVisible) OVERRIDE { }

Completed in 836 milliseconds

1234567