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 #if defined(OS_CHROMEOS) |
| 10 #define PRODUCT_PATH "chromeos" |
| 11 #else |
| 12 #define PRODUCT_PATH "chrome" |
| 13 #endif |
| 14 |
| 15 const char kCrashReasonURL[] = |
| 16 "https://support.google.com/" PRODUCT_PATH "/?p=e_awsnap"; |
| 17 |
| 18 const char kKillReasonURL[] = |
| 19 "https://support.google.com/" PRODUCT_PATH "/?p=e_deadjim"; |
| 20 |
| 21 } // namespace sad_tab |
OLD | NEW |