Searched refs:origins (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DSystemAllowGeolocationOrigins.java111 // Remove the origins in the last read value
114 // Add the origins in the new value
122 * @param setting A space-separated list of origins.
123 * @return A mutable set of origins.
126 HashSet<String> origins = new HashSet<String>();
130 origins.add(origin);
134 return origins;
153 * Gets the current system setting for default allowed geolocation origins.
155 * @return The default allowed origins. Returns {@code ""} if not set.
164 * Adds geolocation permissions for the given origins
166 addOrigins(Set<String> origins) argument
176 removeOrigins(Set<String> origins) argument
[all...]
/packages/apps/Browser/src/com/android/browser/preferences/
H A DWebsiteSettingsFragment.java247 // Get the list of origins we want to display.
250 // safe to group origins here. Note that WebCore::SecurityOrigin
257 public void onReceiveValue(Map origins) {
259 if (origins != null) {
260 Iterator<String> iter = origins.keySet().iterator();
272 public void onReceiveValue(Set<String> origins) {
273 if (origins != null) {
274 Iterator<String> iter = origins.iterator();
322 // our origins, use it to set their title and favicon
590 // origins lis
[all...]

Completed in 652 milliseconds