am 227d2e1c: am 690378d1: am 961aaadf: Merge "Remove synchronized from acceptThirdPartyCookies()" into lmp-dev

* commit '227d2e1c9b1387ea4f71fa323b92800cb8413595':
  Remove synchronized from acceptThirdPartyCookies()
This commit is contained in:
Selim Gurun
2014-08-26 19:39:38 +00:00
committed by Android Git Automerger
2 changed files with 2 additions and 2 deletions

View File

@@ -36681,7 +36681,7 @@ package android.webkit {
public class CookieManager {
method public synchronized boolean acceptCookie();
method public synchronized boolean acceptThirdPartyCookies(android.webkit.WebView);
method public boolean acceptThirdPartyCookies(android.webkit.WebView);
method public static boolean allowFileSchemeCookies();
method public void flush();
method public java.lang.String getCookie(java.lang.String);

View File

@@ -98,7 +98,7 @@ public class CookieManager {
* @param webview the {@link WebView} instance to get the cookie policy for
* @return true if the {@link WebView} accepts third party cookies
*/
public synchronized boolean acceptThirdPartyCookies(WebView webview) {
public boolean acceptThirdPartyCookies(WebView webview) {
throw new MustOverrideException();
}