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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/UrlConstants.java

Issue 2830983005: Remove old webui History page on desktop and mobile (Closed)
Patch Set: merge Created 3 years, 7 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 | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/history/HistoryManagerUtils.java » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 package org.chromium.chrome.browser; 5 package org.chromium.chrome.browser;
6 6
7 /** 7 /**
8 * Java side version of chrome/common/url_constants.cc 8 * Java side version of chrome/common/url_constants.cc
9 */ 9 */
10 public class UrlConstants { 10 public class UrlConstants {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 public static final String BOOKMARKS_UNCATEGORIZED_URL = 43 public static final String BOOKMARKS_UNCATEGORIZED_URL =
44 "chrome-native://bookmarks/uncategorized/"; 44 "chrome-native://bookmarks/uncategorized/";
45 45
46 public static final String DOWNLOADS_HOST = "downloads"; 46 public static final String DOWNLOADS_HOST = "downloads";
47 public static final String DOWNLOADS_URL = "chrome-native://downloads/"; 47 public static final String DOWNLOADS_URL = "chrome-native://downloads/";
48 public static final String DOWNLOADS_FILTER_URL = "chrome-native://downloads /filter/"; 48 public static final String DOWNLOADS_FILTER_URL = "chrome-native://downloads /filter/";
49 49
50 public static final String RECENT_TABS_HOST = "recent-tabs"; 50 public static final String RECENT_TABS_HOST = "recent-tabs";
51 public static final String RECENT_TABS_URL = "chrome-native://recent-tabs/"; 51 public static final String RECENT_TABS_URL = "chrome-native://recent-tabs/";
52 52
53 // TODO(dbeam): do we need both HISTORY_URL and NATIVE_HISTORY_URL?
53 public static final String HISTORY_HOST = "history"; 54 public static final String HISTORY_HOST = "history";
54 public static final String HISTORY_URL = "chrome://history/"; 55 public static final String HISTORY_URL = "chrome://history/";
55 public static final String NATIVE_HISTORY_URL = "chrome-native://history/"; 56 public static final String NATIVE_HISTORY_URL = "chrome-native://history/";
56 57
57 public static final String INTERESTS_HOST = "interests"; 58 public static final String INTERESTS_HOST = "interests";
58 public static final String INTERESTS_URL = "chrome-native://interests/"; 59 public static final String INTERESTS_URL = "chrome-native://interests/";
59 60
60 public static final String PHYSICAL_WEB_DIAGNOSTICS_HOST = "physical-web-dia gnostics"; 61 public static final String PHYSICAL_WEB_DIAGNOSTICS_HOST = "physical-web-dia gnostics";
61 public static final String PHYSICAL_WEB_URL = "chrome://physical-web/"; 62 public static final String PHYSICAL_WEB_URL = "chrome://physical-web/";
62 63
63 public static final String GOOGLE_ACCOUNT_ACTIVITY_CONTROLS_URL = 64 public static final String GOOGLE_ACCOUNT_ACTIVITY_CONTROLS_URL =
64 "https://myaccount.google.com/activitycontrols/search"; 65 "https://myaccount.google.com/activitycontrols/search";
65 } 66 }
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/history/HistoryManagerUtils.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698