Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: cloud_print/service/win/cloud_print_service.cc

Issue 10453082: Base: Add a handle verifier to ScopedHandle. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cloud_print/service/win/cloud_print_service.cc
===================================================================
--- cloud_print/service/win/cloud_print_service.cc (revision 139602)
+++ cloud_print/service/win/cloud_print_service.cc (working copy)
@@ -53,7 +53,8 @@
DISALLOW_IMPLICIT_CONSTRUCTORS(ServiceHandleTraits);
};
-typedef base::win::GenericScopedHandle<ServiceHandleTraits> ServiceHandle;
+typedef base::win::GenericScopedHandle<
+ ServiceHandleTraits, base::win::DummyVerifierTraits> ServiceHandle;
HRESULT HResultFromLastError() {
HRESULT hr = HRESULT_FROM_WIN32(GetLastError());

Powered by Google App Engine
This is Rietveld 408576698