| OLD | NEW |
| 1 # This file contains known patterns of crash signatures. One pattern per line. | 1 # This file contains known patterns of crash signatures. One pattern per line. |
| 2 # | 2 # |
| 3 # A crash signature is the concatenation of the top N functions, delimited by | 3 # A crash signature is the concatenation of the top N functions, delimited by |
| 4 # '___', in chrome.dll on the crash stack. All characters are lower case. | 4 # '___', in chrome.dll on the crash stack. All characters are lower case. |
| 5 # | 5 # |
| 6 # We use crash signature patterns as our list of known crashes. A crash | 6 # We use crash signature patterns as our list of known crashes. A crash |
| 7 # signature pattern is a string that can be used to identify a known crash. We | 7 # signature pattern is a string that can be used to identify a known crash. We |
| 8 # use the notion of patterns because crashes with the same root cause can often | 8 # use the notion of patterns because crashes with the same root cause can often |
| 9 # differ somewhat in their crash stacks. A pattern is intended to be a | 9 # differ somewhat in their crash stacks. A pattern is intended to be a |
| 10 # generalized, yet still identifying, form of a particular crash. Usually a | 10 # generalized, yet still identifying, form of a particular crash. Usually a |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 # 21054 | 136 # 21054 |
| 137 PREFIX : deletetask<safebrowsingdatabase>::run | 137 PREFIX : deletetask<safebrowsingdatabase>::run |
| 138 PREFIX : deletetask<browsingdataremover>::run | 138 PREFIX : deletetask<browsingdataremover>::run |
| 139 PREFIX : deletetask<webplugindelegateproxy>::run | 139 PREFIX : deletetask<webplugindelegateproxy>::run |
| 140 PREFIX : messageloop::dowork | 140 PREFIX : messageloop::dowork |
| 141 | 141 |
| 142 # 21162 | 142 # 21162 |
| 143 PREFIX : v8::internal::invoke | 143 PREFIX : v8::internal::invoke |
| 144 PREFIX : webcore::renderlayer | 144 PREFIX : webcore::renderlayer |
| 145 PREFIX : webcore::renderobject | 145 PREFIX : webcore::renderobject |
| 146 |
| 147 # 21295 |
| 148 PREFIX : renderwidgethost::getbackingstore |
| OLD | NEW |