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

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

Issue 125443002: In-app messaging to communicate the imminent 32-bit deprecation to 32-bit-only users (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 const char kMediaAccessLearnMoreUrl[] = 662 const char kMediaAccessLearnMoreUrl[] =
663 "https://support.google.com/chrome/?p=ib_access_cam_mic"; 663 "https://support.google.com/chrome/?p=ib_access_cam_mic";
664 664
665 const char kLanguageSettingsLearnMoreUrl[] = 665 const char kLanguageSettingsLearnMoreUrl[] =
666 #if defined(OS_CHROMEOS) 666 #if defined(OS_CHROMEOS)
667 "https://support.google.com/chromebook/answer/1059490"; 667 "https://support.google.com/chromebook/answer/1059490";
668 #else 668 #else
669 "https://support.google.com/chrome/topic/1678461"; 669 "https://support.google.com/chrome/topic/1678461";
670 #endif 670 #endif
671 671
672 #if defined(OS_MACOSX)
673 const char kMac32BitDeprecationURL[] =
674 #if !defined(ARCH_CPU_64_BITS)
675 // TODO(mark): use actual URL from this bug
676 "http://crbug.com/331810";
677 #else
678 "";
679 #endif
680 #endif
681
672 } // namespace chrome 682 } // namespace chrome
OLDNEW
« chrome/browser/mac/system_bitness.h ('K') | « chrome/common/url_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698