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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/ChromiumApplication.java

Issue 927763003: Move website settings fetching from WebsitePreferences to new WebsitePermissionFetcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert changes to WebsiteSettingsPopup. Created 5 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: chrome/android/java/src/org/chromium/chrome/browser/ChromiumApplication.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ChromiumApplication.java b/chrome/android/java/src/org/chromium/chrome/browser/ChromiumApplication.java
index a2e9385f621d736a2f4e3b1c181817056e4f11f5..592dc57e9c1b4019b7b46640631fb704bcb2f44f 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/ChromiumApplication.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/ChromiumApplication.java
@@ -61,6 +61,14 @@ protected void showPasswordSettings() {
}
/**
+ * Opens the single origin settings page for the given URL.
+ *
+ * @param url The URL to show the single origin settings for. This is a complete url
+ * including scheme, domain, port, path, etc.
+ */
+ protected void showSingleOriginSettings(String url) {}
Miguel Garcia 2015/02/18 21:50:48 What exactly calls this method? I don't see it bei
Michael van Ouwerkerk 2015/02/19 17:19:34 Calling this will be in the next CL.
Miguel Garcia 2015/02/19 19:15:34 Nice, with this change it will work in chrome shel
+
+ /**
* For extending classes to carry out tasks that initialize the browser process.
* Should be called almost immediately after the native library has loaded to initialize things
* that really, really have to be set up early. Avoid putting any long tasks here.

Powered by Google App Engine
This is Rietveld 408576698