Searched defs:ScopedGDIObject (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/base/win/
H A Dscoped_gdi_object.h18 class ScopedGDIObject { class in namespace:base::win
20 ScopedGDIObject() : object_(NULL) {} function in class:base::win::ScopedGDIObject
21 explicit ScopedGDIObject(T object) : object_(object) {} function in class:base::win::ScopedGDIObject
23 ~ScopedGDIObject() {
37 ScopedGDIObject& operator=(T object) {
57 DISALLOW_COPY_AND_ASSIGN(ScopedGDIObject);
63 void inline ScopedGDIObject<HICON>::Close() {
69 typedef ScopedGDIObject<HBITMAP> ScopedBitmap;
70 typedef ScopedGDIObject<HRGN> ScopedRegion;
71 typedef ScopedGDIObject<HFON
[all...]
/external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
H A Dscoped_gdi_object.h24 class ScopedGDIObject { class in namespace:webrtc::win
26 ScopedGDIObject() : handle_(NULL) {} function in class:webrtc::win::ScopedGDIObject
27 explicit ScopedGDIObject(T object) : handle_(object) {} function in class:webrtc::win::ScopedGDIObject
29 ~ScopedGDIObject() {
43 ScopedGDIObject& operator=(T object) {
59 DISALLOW_COPY_AND_ASSIGN(ScopedGDIObject);
89 typedef ScopedGDIObject<HBITMAP, DeleteObjectTraits<HBITMAP> > ScopedBitmap;
90 typedef ScopedGDIObject<HCURSOR, DestroyCursorTraits> ScopedCursor;

Completed in 192 milliseconds