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

Unified Diff: content/public/common/url_constants.h

Issue 2676893002: [Android History] Fix chrome://history redirect (Closed)
Patch Set: [Android History] Fix chrome://history redirect 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 side-by-side diff with in-line comments
Download patch
Index: content/public/common/url_constants.h
diff --git a/content/public/common/url_constants.h b/content/public/common/url_constants.h
index 9e51257ae05789592564a531bd45706f5dfb164c..e086958bf6f2687384ddb1f497b16a6a378f980e 100644
--- a/content/public/common/url_constants.h
+++ b/content/public/common/url_constants.h
@@ -23,6 +23,9 @@ CONTENT_EXPORT extern const char kViewSourceScheme[];
#if defined(OS_CHROMEOS)
CONTENT_EXPORT extern const char kExternalFileScheme[];
#endif
+#if defined(OS_ANDROID)
+CONTENT_EXPORT extern const char kChromeNativeUIScheme[];
+#endif
// Hosts for about URLs.
CONTENT_EXPORT extern const char kAboutSrcDocURL[];
@@ -35,6 +38,9 @@ CONTENT_EXPORT extern const char kChromeUIDinoHost[];
CONTENT_EXPORT extern const char kChromeUIGpuHost[];
CONTENT_EXPORT extern const char kChromeUIHistogramHost[];
CONTENT_EXPORT extern const char kChromeUIHistoryHost[];
+#if defined(OS_ANDROID)
+CONTENT_EXPORT extern const char kChromeUIHistoryFrameHost[];
+#endif
CONTENT_EXPORT extern const char kChromeUIIndexedDBInternalsHost[];
CONTENT_EXPORT extern const char kChromeUIMediaInternalsHost[];
CONTENT_EXPORT extern const char kChromeUIMemoryExhaustHost[];
@@ -72,6 +78,10 @@ CONTENT_EXPORT extern const char kUnreachableWebDataURL[];
CONTENT_EXPORT extern const char kChromeUINetworkViewCacheURL[];
CONTENT_EXPORT extern const char kChromeUIResourcesURL[];
CONTENT_EXPORT extern const char kChromeUIShorthangURL[];
+#if defined(OS_ANDROID)
+CONTENT_EXPORT extern const char kChromeUIHistoryURL[];
+CONTENT_EXPORT extern const char kChromeUINativeHistoryURL[];
+#endif
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698