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

Side by Side Diff: chrome/common/url_constants.cc

Issue 543663002: Componentize sad_tab (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/common/url_constants.h" 5 #include "chrome/common/url_constants.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "content/public/common/url_constants.h" 10 #include "content/public/common/url_constants.h"
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 "https://support.google.com/chrome/?p=settings_omnibox"; 447 "https://support.google.com/chrome/?p=settings_omnibox";
448 #endif 448 #endif
449 449
450 const char kPageInfoHelpCenterURL[] = 450 const char kPageInfoHelpCenterURL[] =
451 #if defined(OS_CHROMEOS) 451 #if defined(OS_CHROMEOS)
452 "https://support.google.com/chromeos/?p=ui_security_indicator"; 452 "https://support.google.com/chromeos/?p=ui_security_indicator";
453 #else 453 #else
454 "https://support.google.com/chrome/?p=ui_security_indicator"; 454 "https://support.google.com/chrome/?p=ui_security_indicator";
455 #endif 455 #endif
456 456
457 const char kCrashReasonURL[] =
458 #if defined(OS_CHROMEOS)
459 "https://support.google.com/chromeos/?p=e_awsnap";
460 #else
461 "https://support.google.com/chrome/?p=e_awsnap";
462 #endif
463
464 const char kKillReasonURL[] =
465 #if defined(OS_CHROMEOS)
466 "https://support.google.com/chromeos/?p=e_deadjim";
467 #else
468 "https://support.google.com/chrome/?p=e_deadjim";
469 #endif
470
471 const char kPrivacyLearnMoreURL[] = 457 const char kPrivacyLearnMoreURL[] =
472 #if defined(OS_CHROMEOS) 458 #if defined(OS_CHROMEOS)
473 "https://support.google.com/chromeos/?p=settings_privacy"; 459 "https://support.google.com/chromeos/?p=settings_privacy";
474 #else 460 #else
475 "https://support.google.com/chrome/?p=settings_privacy"; 461 "https://support.google.com/chrome/?p=settings_privacy";
476 #endif 462 #endif
477 463
478 const char kDoNotTrackLearnMoreURL[] = 464 const char kDoNotTrackLearnMoreURL[] =
479 #if defined(OS_CHROMEOS) 465 #if defined(OS_CHROMEOS)
480 "https://support.google.com/chromeos/?p=settings_do_not_track"; 466 "https://support.google.com/chromeos/?p=settings_do_not_track";
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
719 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; 705 "https://support.google.com/chrome/?p=ui_mac_32bit_support";
720 #else 706 #else
721 ""; 707 "";
722 #endif 708 #endif
723 #endif 709 #endif
724 710
725 const char kEasyUnlockLearnMoreUrl[] = 711 const char kEasyUnlockLearnMoreUrl[] =
726 "https://support.google.com/chromebook/answer/6070209"; 712 "https://support.google.com/chromebook/answer/6070209";
727 713
728 } // namespace chrome 714 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698