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

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

Issue 2811643005: Fix the Learn More link for Printing in CrOS. (Closed)
Patch Set: fix learn more link for Printing Created 3 years, 8 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
« no previous file with comments | « chrome/common/url_constants.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/macros.h" 9 #include "base/macros.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 581
582 const char kDownloadScanningLearnMoreURL[] = 582 const char kDownloadScanningLearnMoreURL[] =
583 "https://support.google.com/chrome/?p=ib_download_blocked"; 583 "https://support.google.com/chrome/?p=ib_download_blocked";
584 584
585 const char kDownloadInterruptedLearnMoreURL[] = 585 const char kDownloadInterruptedLearnMoreURL[] =
586 "https://support.google.com/chrome/?p=ui_download_errors"; 586 "https://support.google.com/chrome/?p=ui_download_errors";
587 587
588 const char kSyncEverythingLearnMoreURL[] = 588 const char kSyncEverythingLearnMoreURL[] =
589 "https://support.google.com/chrome/?p=settings_sync_all"; 589 "https://support.google.com/chrome/?p=settings_sync_all";
590 590
591 #if defined(OS_CHROMEOS)
592 const char kCrosPrintingLearnMoreURL[] =
593 "https://support.google.com/chromebook?p=chromebook_printing";
594 #endif
595
591 const char kCloudPrintLearnMoreURL[] = 596 const char kCloudPrintLearnMoreURL[] =
592 #if defined(OS_CHROMEOS) 597 #if defined(OS_CHROMEOS)
593 "https://support.google.com/chromebook/?p=settings_cloud_print"; 598 "https://support.google.com/chromebook/?p=settings_cloud_print";
594 #else 599 #else
595 "https://support.google.com/chrome/?p=settings_cloud_print"; 600 "https://support.google.com/chrome/?p=settings_cloud_print";
596 #endif 601 #endif
597 602
598 const char kCloudPrintNoDestinationsLearnMoreURL[] = 603 const char kCloudPrintNoDestinationsLearnMoreURL[] =
599 "https://www.google.com/cloudprint/learn/"; 604 "https://www.google.com/cloudprint/learn/";
600 605
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
828 #endif 833 #endif
829 834
830 const char kChooserUsbOverviewURL[] = 835 const char kChooserUsbOverviewURL[] =
831 "https://support.google.com/chrome?p=webusb"; 836 "https://support.google.com/chrome?p=webusb";
832 837
833 #if defined(OS_CHROMEOS) 838 #if defined(OS_CHROMEOS)
834 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; 839 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/";
835 #endif 840 #endif
836 841
837 } // namespace chrome 842 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/common/url_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698