These should be int to allow them to be ORed together.  Ted, please review.


git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@194 4c0a9323-5329-0410-9bdc-e9ce6186880e
diff --git a/src/client/windows/handler/exception_handler.h b/src/client/windows/handler/exception_handler.h
index c2d5560..464bbb7 100644
--- a/src/client/windows/handler/exception_handler.h
+++ b/src/client/windows/handler/exception_handler.h
@@ -145,7 +145,7 @@
                    FilterCallback filter,
                    MinidumpCallback callback,
                    void *callback_context,
-                   HandlerType handler_types);
+                   int handler_types);
   ~ExceptionHandler();
 
   // Get and set the minidump path.
@@ -262,7 +262,7 @@
 
   // Tracks the handler types that were installed according to the
   // handler_types constructor argument.
-  HandlerType handler_types_;
+  int handler_types_;
 
   // When installed_handler_ is true, previous_filter_ is the unhandled
   // exception filter that was set prior to installing ExceptionHandler as