| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include <map> | 5 #include <map> |
| 6 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/synchronization/lock.h" | 10 #include "base/synchronization/lock.h" |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 // in custom_entries_. | 66 // in custom_entries_. |
| 67 DynamicEntriesMap dynamic_entries_; // Under lock_. | 67 DynamicEntriesMap dynamic_entries_; // Under lock_. |
| 68 | 68 |
| 69 // Stores the sole instance of this class allowed per process. | 69 // Stores the sole instance of this class allowed per process. |
| 70 static CrashKeysWin* keeper_; | 70 static CrashKeysWin* keeper_; |
| 71 | 71 |
| 72 DISALLOW_COPY_AND_ASSIGN(CrashKeysWin); | 72 DISALLOW_COPY_AND_ASSIGN(CrashKeysWin); |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace breakpad | 75 } // namespace breakpad |
| OLD | NEW |