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

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

Issue 2664373002: android: Add debug url to throw uncaught exception (Closed)
Patch Set: fix missing os_android Created 3 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
« no previous file with comments | « base/android/throw_uncaught_exception.cc ('k') | content/browser/frame_host/debug_urls.cc » ('j') | 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 729 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 content::kChromeUIKillURL, 740 content::kChromeUIKillURL,
741 content::kChromeUIHangURL, 741 content::kChromeUIHangURL,
742 content::kChromeUIShorthangURL, 742 content::kChromeUIShorthangURL,
743 content::kChromeUIGpuCleanURL, 743 content::kChromeUIGpuCleanURL,
744 content::kChromeUIGpuCrashURL, 744 content::kChromeUIGpuCrashURL,
745 content::kChromeUIGpuHangURL, 745 content::kChromeUIGpuHangURL,
746 content::kChromeUIMemoryExhaustURL, 746 content::kChromeUIMemoryExhaustURL,
747 content::kChromeUIPpapiFlashCrashURL, 747 content::kChromeUIPpapiFlashCrashURL,
748 content::kChromeUIPpapiFlashHangURL, 748 content::kChromeUIPpapiFlashHangURL,
749 #if defined(OS_ANDROID) 749 #if defined(OS_ANDROID)
750 content::kChromeUIGpuJavaCrashURL,
750 chrome::kChromeUIJavaCrashURL, 751 chrome::kChromeUIJavaCrashURL,
751 #endif 752 #endif
752 chrome::kChromeUIQuitURL, 753 chrome::kChromeUIQuitURL,
753 chrome::kChromeUIRestartURL}; 754 chrome::kChromeUIRestartURL};
754 const int kNumberOfChromeDebugURLs = 755 const int kNumberOfChromeDebugURLs =
755 static_cast<int>(arraysize(kChromeDebugURLs)); 756 static_cast<int>(arraysize(kChromeDebugURLs));
756 757
757 const char kChromeNativeScheme[] = "chrome-native"; 758 const char kChromeNativeScheme[] = "chrome-native";
758 759
759 const char kChromeSearchScheme[] = "chrome-search"; 760 const char kChromeSearchScheme[] = "chrome-search";
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 #endif 811 #endif
811 812
812 const char kChooserUsbOverviewURL[] = 813 const char kChooserUsbOverviewURL[] =
813 "https://support.google.com/chrome?p=webusb"; 814 "https://support.google.com/chrome?p=webusb";
814 815
815 #if defined(OS_CHROMEOS) 816 #if defined(OS_CHROMEOS)
816 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; 817 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/";
817 #endif 818 #endif
818 819
819 } // namespace chrome 820 } // namespace chrome
OLDNEW
« no previous file with comments | « base/android/throw_uncaught_exception.cc ('k') | content/browser/frame_host/debug_urls.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698