Removing CRs from #81.  Hey, how'd those get in there?


git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@82 4c0a9323-5329-0410-9bdc-e9ce6186880e
diff --git a/src/client/windows/handler/exception_handler.h b/src/client/windows/handler/exception_handler.h
index f5ca31b..8f4f50a 100644
--- a/src/client/windows/handler/exception_handler.h
+++ b/src/client/windows/handler/exception_handler.h
@@ -206,16 +206,16 @@
   HMODULE dbghelp_module_;
   MiniDumpWriteDump_type minidump_write_dump_;
 
-  // True if the ExceptionHandler installed an unhandled exception filter

-  // when created (with an install_handler parameter set to true).

-  bool installed_handler_;

-

-  // When installed_handler_ is true, previous_filter_ is the unhandled

-  // exception filter that was set prior to installing ExceptionHandler as

-  // the unhandled exception filter and pointing it to |this|.  NULL indicates

-  // that there is no previous unhandled exception filter.

+  // True if the ExceptionHandler installed an unhandled exception filter
+  // when created (with an install_handler parameter set to true).
+  bool installed_handler_;
+
+  // When installed_handler_ is true, previous_filter_ is the unhandled
+  // exception filter that was set prior to installing ExceptionHandler as
+  // the unhandled exception filter and pointing it to |this|.  NULL indicates
+  // that there is no previous unhandled exception filter.
   LPTOP_LEVEL_EXCEPTION_FILTER previous_filter_;
-

+
   // The exception handler thread.
   HANDLE handler_thread_;
 
@@ -246,21 +246,21 @@
   // the requesting thread.
   bool handler_return_value_;
 
-  // A stack of ExceptionHandler objects that have installed unhandled

-  // exception filters.  This vector is used by HandleException to determine

-  // which ExceptionHandler object to route an exception to.  When an

-  // ExceptionHandler is created with install_handler true, it will append

-  // itself to this list.

-  static vector<ExceptionHandler *> *handler_stack_;

-

-  // The index of the ExceptionHandler in handler_stack_ that will handle the

-  // next exception.  Note that 0 means the last entry in handler_stack_, 1

-  // means the next-to-last entry, and so on.  This is used by HandleException

-  // to support multiple stacked Airbag handlers.

-  static LONG handler_stack_index_;

-

-  // handler_stack_critical_section_ guards operations on handler_stack_ and

-  // handler_stack_index_.

+  // A stack of ExceptionHandler objects that have installed unhandled
+  // exception filters.  This vector is used by HandleException to determine
+  // which ExceptionHandler object to route an exception to.  When an
+  // ExceptionHandler is created with install_handler true, it will append
+  // itself to this list.
+  static vector<ExceptionHandler *> *handler_stack_;
+
+  // The index of the ExceptionHandler in handler_stack_ that will handle the
+  // next exception.  Note that 0 means the last entry in handler_stack_, 1
+  // means the next-to-last entry, and so on.  This is used by HandleException
+  // to support multiple stacked Airbag handlers.
+  static LONG handler_stack_index_;
+
+  // handler_stack_critical_section_ guards operations on handler_stack_ and
+  // handler_stack_index_.
   static CRITICAL_SECTION handler_stack_critical_section_;
 
   // True when handler_stack_critical_section_ has been initialized.