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. |