예제 #1
0
 /**
  * Returns all the currently saved exceptions for a given content settings type.
  *
  * @param contentSettingsType The type to fetch exceptions for.
  */
 public List<ContentSettingException> getContentSettingsExceptions(int contentSettingsType) {
   List<ContentSettingException> list = new ArrayList<ContentSettingException>();
   nativeGetContentSettingsExceptions(contentSettingsType, list);
   return list;
 }