HomeSort by relevance Sort by last modified time
    Searched full:hdc_ (Results 1 - 1 of 1) sorted by null

  /external/chromium/base/win/
scoped_hdc.h 20 ScopedHDC() : hdc_(NULL) { }
21 explicit ScopedHDC(HDC h) : hdc_(h) { }
28 return hdc_;
33 hdc_ = h;
36 operator HDC() { return hdc_; }
43 if (hdc_)
44 DeleteDC(hdc_);
48 HDC hdc_; member in class:base::win::ScopedHDC

Completed in 43 milliseconds