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

Side by Side Diff: components/sad_tab/url_constants.cc

Issue 543663002: Componentize sad_tab (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix GN Created 6 years, 3 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
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698