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

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

Issue 886523003: Add a Rappor option in the settings page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 "https://support.google.com/chrome/?p=e_deadjim"; 472 "https://support.google.com/chrome/?p=e_deadjim";
473 #endif 473 #endif
474 474
475 const char kPrivacyLearnMoreURL[] = 475 const char kPrivacyLearnMoreURL[] =
476 #if defined(OS_CHROMEOS) 476 #if defined(OS_CHROMEOS)
477 "https://support.google.com/chromeos/?p=settings_privacy"; 477 "https://support.google.com/chromeos/?p=settings_privacy";
478 #else 478 #else
479 "https://support.google.com/chrome/?p=settings_privacy"; 479 "https://support.google.com/chrome/?p=settings_privacy";
480 #endif 480 #endif
481 481
482 const char kRapporLearnMoreURL[] =
483 #if defined(OS_CHROMEOS)
484 "https://support.google.com/chromeos/?p=rappor";
485 #else
486 "https://support.google.com/chrome/?p=rappor";
487 #endif
488
482 const char kDoNotTrackLearnMoreURL[] = 489 const char kDoNotTrackLearnMoreURL[] =
483 #if defined(OS_CHROMEOS) 490 #if defined(OS_CHROMEOS)
484 "https://support.google.com/chromeos/?p=settings_do_not_track"; 491 "https://support.google.com/chromeos/?p=settings_do_not_track";
485 #else 492 #else
486 "https://support.google.com/chrome/?p=settings_do_not_track"; 493 "https://support.google.com/chrome/?p=settings_do_not_track";
487 #endif 494 #endif
488 495
489 #if defined(OS_CHROMEOS) 496 #if defined(OS_CHROMEOS)
490 const char kAttestationForContentProtectionLearnMoreURL[] = 497 const char kAttestationForContentProtectionLearnMoreURL[] =
491 "https://support.google.com/chromebook/?p=verified_access"; 498 "https://support.google.com/chromebook/?p=verified_access";
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; 730 "https://support.google.com/chrome/?p=ui_mac_32bit_support";
724 #else 731 #else
725 ""; 732 "";
726 #endif 733 #endif
727 #endif 734 #endif
728 735
729 const char kEasyUnlockLearnMoreUrl[] = 736 const char kEasyUnlockLearnMoreUrl[] =
730 "https://support.google.com/chromebook/?p=smart_lock"; 737 "https://support.google.com/chromebook/?p=smart_lock";
731 738
732 } // namespace chrome 739 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698