Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/desktop_capture/win/
Dscoped_gdi_object.h24 class ScopedGDIObject {
26 ScopedGDIObject() : handle_(NULL) {} in ScopedGDIObject() function
27 explicit ScopedGDIObject(T object) : handle_(object) {} in ScopedGDIObject() function
29 ~ScopedGDIObject() { in ~ScopedGDIObject()
43 ScopedGDIObject& operator=(T object) {
59 RTC_DISALLOW_COPY_AND_ASSIGN(ScopedGDIObject);
89 typedef ScopedGDIObject<HBITMAP, DeleteObjectTraits<HBITMAP> > ScopedBitmap;
90 typedef ScopedGDIObject<HCURSOR, DestroyCursorTraits> ScopedCursor;
/external/libchrome/base/win/
Dscoped_gdi_object.h34 using ScopedGDIObject = ScopedGeneric<T, internal::ScopedGDIObjectTraits<T>>; variable
37 typedef ScopedGDIObject<HBITMAP> ScopedBitmap;
38 typedef ScopedGDIObject<HRGN> ScopedRegion;
39 typedef ScopedGDIObject<HFONT> ScopedHFONT;
40 typedef ScopedGDIObject<HICON> ScopedHICON;
/external/webrtc/webrtc/modules/desktop_capture/
Dcropping_window_capturer_win.cc165 win::ScopedGDIObject<HRGN, win::DeleteObjectTraits<HRGN> > in ShouldUseScreenCapturer()