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

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

Issue 10837158: mac: Delete more 10.5-only code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rsesek Created 8 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 | 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 "googleurl/src/url_util.h" 7 #include "googleurl/src/url_util.h"
8 8
9 namespace chrome { 9 namespace chrome {
10 10
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 "https://accounts.google.com/NewAccount?service=chromiumsync"; 458 "https://accounts.google.com/NewAccount?service=chromiumsync";
459 459
460 const char kChromeToMobileLearnMoreURL[] = 460 const char kChromeToMobileLearnMoreURL[] =
461 "https://support.google.com/chrome/?p=ib_chrome_to_mobile"; 461 "https://support.google.com/chrome/?p=ib_chrome_to_mobile";
462 462
463 #if defined(OS_CHROMEOS) 463 #if defined(OS_CHROMEOS)
464 const char kNaturalScrollHelpURL[] = 464 const char kNaturalScrollHelpURL[] =
465 "https://support.google.com/chromeos/?p=simple_scrolling"; 465 "https://support.google.com/chromeos/?p=simple_scrolling";
466 #endif 466 #endif
467 467
468 #if defined(OS_MACOSX)
469 const char kMacLeopardObsoleteURL[] =
470 "https://support.google.com/chrome/?p=ui_mac_leopard_support";
471 #endif
472
473 const char* const kChromeDebugURLs[] = { 468 const char* const kChromeDebugURLs[] = {
474 kChromeUICrashURL, 469 kChromeUICrashURL,
475 kChromeUIKillURL, 470 kChromeUIKillURL,
476 kChromeUIHangURL, 471 kChromeUIHangURL,
477 kChromeUIShorthangURL, 472 kChromeUIShorthangURL,
478 kChromeUIGpuCleanURL, 473 kChromeUIGpuCleanURL,
479 kChromeUIGpuCrashURL, 474 kChromeUIGpuCrashURL,
480 kChromeUIGpuHangURL, 475 kChromeUIGpuHangURL,
481 }; 476 };
482 const int kNumberOfChromeDebugURLs = 477 const int kNumberOfChromeDebugURLs =
483 static_cast<int>(arraysize(kChromeDebugURLs)); 478 static_cast<int>(arraysize(kChromeDebugURLs));
484 479
485 const char kExtensionScheme[] = "chrome-extension"; 480 const char kExtensionScheme[] = "chrome-extension";
486 const char kExtensionResourceScheme[] = "chrome-extension-resource"; 481 const char kExtensionResourceScheme[] = "chrome-extension-resource";
487 482
488 } // namespace chrome 483 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698