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

Side by Side Diff: chrome/common/crash_keys.h

Issue 2545823002: Store the NSEvent.description in a crash key in -[BrowserCrApplication sendEvent:]. (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/chrome_browser_application_mac.mm ('k') | chrome/common/crash_keys.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 CHROME_COMMON_CRASH_KEYS_H_ 5 #ifndef CHROME_COMMON_CRASH_KEYS_H_
6 #define CHROME_COMMON_CRASH_KEYS_H_ 6 #define CHROME_COMMON_CRASH_KEYS_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <set> 10 #include <set>
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 extern const char kLastNSExceptionTrace[]; 123 extern const char kLastNSExceptionTrace[];
124 124
125 // Records the current NSException as it is being created, and its backtrace. 125 // Records the current NSException as it is being created, and its backtrace.
126 extern const char kNSException[]; 126 extern const char kNSException[];
127 extern const char kNSExceptionTrace[]; 127 extern const char kNSExceptionTrace[];
128 128
129 // In the CrApplication, records information about the current event's 129 // In the CrApplication, records information about the current event's
130 // target-action. 130 // target-action.
131 extern const char kSendAction[]; 131 extern const char kSendAction[];
132 132
133 // In the CrApplication, records information about the current event.
134 extern const char kNSEvent[];
135
133 } // namespace mac 136 } // namespace mac
134 #endif 137 #endif
135 138
136 #if BUILDFLAG(ENABLE_KASKO) 139 #if BUILDFLAG(ENABLE_KASKO)
137 // Used to correlate a report sent via Kasko with one sent via Breakpad. 140 // Used to correlate a report sent via Kasko with one sent via Breakpad.
138 extern const char kKaskoGuid[]; 141 extern const char kKaskoGuid[];
139 extern const char kKaskoEquivalentGuid[]; 142 extern const char kKaskoEquivalentGuid[];
140 #endif 143 #endif
141 144
142 // Numbers of active views. 145 // Numbers of active views.
143 extern const char kViewCount[]; 146 extern const char kViewCount[];
144 147
145 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame 148 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame
146 // was encountered. http://crbug.com/519022 149 // was encountered. http://crbug.com/519022
147 extern const char kZeroEncodeDetails[]; 150 extern const char kZeroEncodeDetails[];
148 151
149 } // namespace crash_keys 152 } // namespace crash_keys
150 153
151 #endif // CHROME_COMMON_CRASH_KEYS_H_ 154 #endif // CHROME_COMMON_CRASH_KEYS_H_
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_application_mac.mm ('k') | chrome/common/crash_keys.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698