OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "components/sad_tab/url_constants.h" |
| 6 |
| 7 namespace sad_tab { |
| 8 |
| 9 const char kCrashReasonURL[] = |
| 10 #if defined(OS_CHROMEOS) |
| 11 "https://support.google.com/chromeos/?p=e_awsnap"; |
| 12 #else |
| 13 "https://support.google.com/chrome/?p=e_awsnap"; |
| 14 #endif |
| 15 |
| 16 const char kKillReasonURL[] = |
| 17 #if defined(OS_CHROMEOS) |
| 18 "https://support.google.com/chromeos/?p=e_deadjim"; |
| 19 #else |
| 20 "https://support.google.com/chrome/?p=e_deadjim"; |
| 21 #endif |
| 22 |
| 23 } // namespace sad_tab |
OLD | NEW |