1/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.webview.chromium;
18
19import android.webkit.GeolocationPermissions;
20import android.webkit.ValueCallback;
21
22import org.chromium.android_webview.AwGeolocationPermissions;
23
24import java.util.Set;
25
26/**
27 * Chromium implementation of GeolocationPermissions -- forwards calls to the
28 * chromium internal implementation.
29 */
30final class GeolocationPermissionsAdapter extends GeolocationPermissions {
31
32    private AwGeolocationPermissions mChromeGeolocationPermissions;
33
34    public GeolocationPermissionsAdapter(AwGeolocationPermissions chromeGeolocationPermissions) {
35        mChromeGeolocationPermissions = chromeGeolocationPermissions;
36    }
37
38    @Override
39    public void allow(String origin) {
40        mChromeGeolocationPermissions.allow(origin);
41    }
42
43    @Override
44    public void clear(String origin) {
45        mChromeGeolocationPermissions.clear(origin);
46    }
47
48    @Override
49    public void clearAll() {
50        mChromeGeolocationPermissions.clearAll();
51    }
52
53    @Override
54    public void getAllowed(String origin, ValueCallback<Boolean> callback) {
55        mChromeGeolocationPermissions.getAllowed(origin, callback);
56    }
57
58    @Override
59    public void getOrigins(ValueCallback<Set<String>> callback) {
60        mChromeGeolocationPermissions.getOrigins(callback);
61    }
62}
63