| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_CRASH_TOOLS_CRASH_SERVICE_H_ | 5 #ifndef COMPONENTS_CRASH_CONTENT_TOOLS_CRASH_SERVICE_H_ |
| 6 #define COMPONENTS_CRASH_TOOLS_CRASH_SERVICE_H_ | 6 #define COMPONENTS_CRASH_CONTENT_TOOLS_CRASH_SERVICE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/synchronization/lock.h" | 12 #include "base/synchronization/lock.h" |
| 13 | 13 |
| 14 namespace google_breakpad { | 14 namespace google_breakpad { |
| 15 | 15 |
| 16 class CrashReportSender; | 16 class CrashReportSender; |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 int requests_sent_; | 115 int requests_sent_; |
| 116 volatile long clients_connected_; | 116 volatile long clients_connected_; |
| 117 volatile long clients_terminated_; | 117 volatile long clients_terminated_; |
| 118 base::Lock sending_; | 118 base::Lock sending_; |
| 119 | 119 |
| 120 DISALLOW_COPY_AND_ASSIGN(CrashService); | 120 DISALLOW_COPY_AND_ASSIGN(CrashService); |
| 121 }; | 121 }; |
| 122 | 122 |
| 123 } // namespace breakpad | 123 } // namespace breakpad |
| 124 | 124 |
| 125 #endif // COMPONENTS_CRASH_TOOLS_CRASH_SERVICE_H_ | 125 #endif // COMPONENTS_CRASH_CONTENT_TOOLS_CRASH_SERVICE_H_ |
| OLD | NEW |