Home
last modified time | relevance | path

Searched refs:ScopedGDIObject (Results 1 – 3 of 3) sorted by relevance

/external/chromium/base/win/
Dscoped_gdi_object.h19 class ScopedGDIObject {
21 ScopedGDIObject() : object_(NULL) {} in ScopedGDIObject() function
22 explicit ScopedGDIObject(T object) : object_(object) {} in ScopedGDIObject() function
24 ~ScopedGDIObject() { in ~ScopedGDIObject()
38 ScopedGDIObject& operator=(T object) {
58 DISALLOW_COPY_AND_ASSIGN(ScopedGDIObject);
64 void ScopedGDIObject<HICON>::Close() { in Close()
70 typedef ScopedGDIObject<HBITMAP> ScopedBitmap;
71 typedef ScopedGDIObject<HRGN> ScopedRegion;
72 typedef ScopedGDIObject<HFONT> ScopedHFONT;
[all …]
/external/chromium/chrome/browser/ui/views/autocomplete/
Dautocomplete_popup_contents_view.cc599 base::win::ScopedGDIObject<HRGN> popup_region; in UpdateBlurRegion()
/external/chromium/chrome/browser/renderer_host/
Drender_widget_host_view_win.cc628 base::win::ScopedGDIObject<HRGN> damage_region(CreateRectRgn(0, 0, 0, 0)); in Redraw()
857 base::win::ScopedGDIObject<HRGN> damage_region(CreateRectRgn(0, 0, 0, 0)); in OnPaint()