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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/preferences/website/WebsitePreferenceBridge.java

Issue 2888473003: [subresource_filter] Site Details UI for default state (Closed)
Patch Set: site details fixes Created 3 years, 6 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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.preferences.website; 5 package org.chromium.chrome.browser.preferences.website;
6 6
7 import org.chromium.base.Callback; 7 import org.chromium.base.Callback;
8 import org.chromium.base.annotations.CalledByNative; 8 import org.chromium.base.annotations.CalledByNative;
9 import org.chromium.chrome.browser.preferences.PrefServiceBridge; 9 import org.chromium.chrome.browser.preferences.PrefServiceBridge;
10 10
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 return nativeGetDSEGeolocationSetting(); 233 return nativeGetDSEGeolocationSetting();
234 } 234 }
235 235
236 /** 236 /**
237 * Sets the DSE (Default Search Engine) geolocation setting. 237 * Sets the DSE (Default Search Engine) geolocation setting.
238 */ 238 */
239 public static void setDSEGeolocationSetting(boolean setting) { 239 public static void setDSEGeolocationSetting(boolean setting) {
240 nativeSetDSEGeolocationSetting(setting); 240 nativeSetDSEGeolocationSetting(setting);
241 } 241 }
242 242
243 public static boolean getSubresourceFilterActivated(String origin) {
Finnur 2017/05/30 13:29:26 nit: document.
244 return nativeGetSubresourceFilterActivated(origin);
245 }
246
243 private static native void nativeGetGeolocationOrigins(Object list, boolean managedOnly); 247 private static native void nativeGetGeolocationOrigins(Object list, boolean managedOnly);
244 static native int nativeGetGeolocationSettingForOrigin( 248 static native int nativeGetGeolocationSettingForOrigin(
245 String origin, String embedder, boolean isIncognito); 249 String origin, String embedder, boolean isIncognito);
246 public static native void nativeSetGeolocationSettingForOrigin( 250 public static native void nativeSetGeolocationSettingForOrigin(
247 String origin, String embedder, int value, boolean isIncognito); 251 String origin, String embedder, int value, boolean isIncognito);
248 private static native void nativeGetMidiOrigins(Object list); 252 private static native void nativeGetMidiOrigins(Object list);
249 static native int nativeGetMidiSettingForOrigin( 253 static native int nativeGetMidiSettingForOrigin(
250 String origin, String embedder, boolean isIncognito); 254 String origin, String embedder, boolean isIncognito);
251 static native void nativeSetMidiSettingForOrigin( 255 static native void nativeSetMidiSettingForOrigin(
252 String origin, String embedder, int value, boolean isIncognito); 256 String origin, String embedder, int value, boolean isIncognito);
(...skipping 24 matching lines...) Expand all
277 private static native void nativeFetchStorageInfo(Object callback); 281 private static native void nativeFetchStorageInfo(Object callback);
278 static native boolean nativeIsContentSettingsPatternValid(String pattern); 282 static native boolean nativeIsContentSettingsPatternValid(String pattern);
279 static native boolean nativeUrlMatchesContentSettingsPattern(String url, Str ing pattern); 283 static native boolean nativeUrlMatchesContentSettingsPattern(String url, Str ing pattern);
280 static native void nativeGetUsbOrigins(Object list); 284 static native void nativeGetUsbOrigins(Object list);
281 static native void nativeRevokeUsbPermission(String origin, String embedder, String object); 285 static native void nativeRevokeUsbPermission(String origin, String embedder, String object);
282 static native void nativeClearBannerData(String origin); 286 static native void nativeClearBannerData(String origin);
283 private static native boolean nativeShouldUseDSEGeolocationSetting( 287 private static native boolean nativeShouldUseDSEGeolocationSetting(
284 String origin, boolean isIncognito); 288 String origin, boolean isIncognito);
285 private static native boolean nativeGetDSEGeolocationSetting(); 289 private static native boolean nativeGetDSEGeolocationSetting();
286 private static native void nativeSetDSEGeolocationSetting(boolean setting); 290 private static native void nativeSetDSEGeolocationSetting(boolean setting);
291 private static native boolean nativeGetSubresourceFilterActivated(String ori gin);
287 } 292 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698