| Index: chrome/browser/metrics/thread_watcher.cc
|
| diff --git a/chrome/browser/metrics/thread_watcher.cc b/chrome/browser/metrics/thread_watcher.cc
|
| index 39dc136e5cd622a408320274f3c1182373046740..c8ee4cfe758d0ce19534cd74db65af45ec29b4a4 100644
|
| --- a/chrome/browser/metrics/thread_watcher.cc
|
| +++ b/chrome/browser/metrics/thread_watcher.cc
|
| @@ -63,10 +63,6 @@ NOINLINE void ThreadUnresponsive_DB() {
|
| NullPointerCrash(__LINE__);
|
| }
|
|
|
| -NOINLINE void ThreadUnresponsive_WEBKIT() {
|
| - NullPointerCrash(__LINE__);
|
| -}
|
| -
|
| NOINLINE void ThreadUnresponsive_FILE() {
|
| NullPointerCrash(__LINE__);
|
| }
|
| @@ -98,8 +94,6 @@ void CrashBecauseThreadWasUnresponsive(BrowserThread::ID thread_id) {
|
| return ThreadUnresponsive_UI();
|
| case BrowserThread::DB:
|
| return ThreadUnresponsive_DB();
|
| - case BrowserThread::WEBKIT_DEPRECATED:
|
| - return ThreadUnresponsive_WEBKIT();
|
| case BrowserThread::FILE:
|
| return ThreadUnresponsive_FILE();
|
| case BrowserThread::FILE_USER_BLOCKING:
|
|
|