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 | |
sadrul
2014/09/22 16:48:22
An alternate for this is:
#if defined(OS_CHROMEOS
hashimoto
2014/09/26 08:43:35
Done.
| |
23 } // namespace sad_tab | |
OLD | NEW |