| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |