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

Side by Side Diff: blimp/engine/app/blimp_engine_crash_keys.cc

Issue 2377963002: restore LOG_FATAL crash key on windows
Patch Set: Created 4 years, 2 months 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "blimp/engine/app/blimp_engine_crash_keys.h" 5 #include "blimp/engine/app/blimp_engine_crash_keys.h"
6 6
7 #include "base/debug/crash_logging.h" 7 #include "base/debug/crash_logging.h"
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "components/crash/core/common/crash_keys.h" 9 #include "components/crash/core/common/crash_keys.h"
10 10
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 { "swdh_register_cannot_scope_url", crash_keys::kLargeSize }, 98 { "swdh_register_cannot_scope_url", crash_keys::kLargeSize },
99 { "swdh_register_cannot_script_url", crash_keys::kLargeSize }, 99 { "swdh_register_cannot_script_url", crash_keys::kLargeSize },
100 100
101 // Temporary for https://crbug.com/619294. 101 // Temporary for https://crbug.com/619294.
102 { "swdh_unregister_cannot_host_url", crash_keys::kLargeSize }, 102 { "swdh_unregister_cannot_host_url", crash_keys::kLargeSize },
103 { "swdh_unregister_cannot_scope_url", crash_keys::kLargeSize }, 103 { "swdh_unregister_cannot_scope_url", crash_keys::kLargeSize },
104 104
105 // Temporary for https://crbug.com/630496. 105 // Temporary for https://crbug.com/630496.
106 { "swdh_get_registration_cannot_host_url", crash_keys::kLargeSize }, 106 { "swdh_get_registration_cannot_host_url", crash_keys::kLargeSize },
107 { "swdh_get_registration_cannot_document_url", crash_keys::kLargeSize }, 107 { "swdh_get_registration_cannot_document_url", crash_keys::kLargeSize },
108
109 { "LOG_FATAL", crash_keys::kLargeSize },
108 }; 110 };
109 111
110 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), 112 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys),
111 crash_keys::kChunkMaxLength); 113 crash_keys::kChunkMaxLength);
112 } 114 }
113 115
114 } // namespace engine 116 } // namespace engine
115 } // namespace blimp 117 } // namespace blimp
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698