HomeSort by relevance Sort by last modified time
    Searched defs:ScopedGDIObject (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/base/win/
scoped_gdi_object.h 18 class ScopedGDIObject {
20 ScopedGDIObject() : object_(NULL) {}
21 explicit ScopedGDIObject(T object) : object_(object) {}
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<HFONT> ScopedHFONT
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
scoped_gdi_object.h 24 class ScopedGDIObject {
26 ScopedGDIObject() : handle_(NULL) {}
27 explicit ScopedGDIObject(T object) : handle_(object) {}
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 376 milliseconds