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

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

Issue 2216933003: Implement the palette help and options buttons. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@palette-delegate
Patch Set: Initial upload Created 4 years, 4 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/macros.h" 9 #include "base/macros.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 #endif // defined(OFFICIAL_BUILD 421 #endif // defined(OFFICIAL_BUILD
422 #else 422 #else
423 "https://support.google.com/chrome/?p=help&ctx=settings"; 423 "https://support.google.com/chrome/?p=help&ctx=settings";
424 #endif // defined(OS_CHROMEOS) 424 #endif // defined(OS_CHROMEOS)
425 425
426 #if defined(OS_CHROMEOS) 426 #if defined(OS_CHROMEOS)
427 const char kChromeAccessibilityHelpURL[] = 427 const char kChromeAccessibilityHelpURL[] =
428 "https://support.google.com/chromebook/?p=accessibility_menu"; 428 "https://support.google.com/chromebook/?p=accessibility_menu";
429 const char kChromeAccessibilitySettingsURL[] = 429 const char kChromeAccessibilitySettingsURL[] =
430 "/chromevox/background/options.html"; 430 "/chromevox/background/options.html";
431 const char kChromePaletteHelpURL[] =
432 "https://support.google.com/chromebook?p=stylus_help";
431 #endif // defined(OS_CHROMEOS) 433 #endif // defined(OS_CHROMEOS)
432 434
433 #if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) 435 #if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN)
434 const char kChromeSyncLearnMoreURL[] = 436 const char kChromeSyncLearnMoreURL[] =
435 "https://support.google.com/chrome/answer/165139"; 437 "https://support.google.com/chrome/answer/165139";
436 438
437 const char kChromeSyncMergeTroubleshootingURL[] = 439 const char kChromeSyncMergeTroubleshootingURL[] =
438 "https://support.google.com/chrome/answer/1181420#merge"; 440 "https://support.google.com/chrome/answer/1181420#merge";
439 #endif // BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN) 441 #endif // BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN)
440 442
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 "https://support.google.com/chrome?p=bluetooth"; 774 "https://support.google.com/chrome?p=bluetooth";
773 775
774 const char kChooserUsbOverviewURL[] = 776 const char kChooserUsbOverviewURL[] =
775 "https://support.google.com/chrome?p=webusb"; 777 "https://support.google.com/chrome?p=webusb";
776 778
777 #if defined(OS_CHROMEOS) 779 #if defined(OS_CHROMEOS)
778 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; 780 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/";
779 #endif 781 #endif
780 782
781 } // namespace chrome 783 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698