summaryrefslogtreecommitdiffstats
path: root/android_webview/native/aw_geolocation_permission_context.cc
blob: 11d91401ed7e4f2ca61d4d549f7da5a8b8f8a3e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "android_webview/native/aw_geolocation_permission_context.h"

#include "android_webview/native/aw_contents.h"
#include "base/bind.h"
#include "base/callback.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/web_contents.h"

namespace android_webview {

AwGeolocationPermissionContext::~AwGeolocationPermissionContext() {
}

void AwGeolocationPermissionContext::RequestGeolocationPermission(
    content::WebContents* web_contents,
    int bridge_id,
    const GURL& requesting_frame,
    bool user_gesture,
    base::Callback<void(bool)> callback) {
  AwContents* aw_contents = AwContents::FromWebContents(web_contents);
  if (!aw_contents) {
    callback.Run(false);
    return;
  }
  aw_contents->ShowGeolocationPrompt(requesting_frame, callback);
}

// static
content::GeolocationPermissionContext*
AwGeolocationPermissionContext::Create(AwBrowserContext* browser_context) {
  return new AwGeolocationPermissionContext();
}

void AwGeolocationPermissionContext::CancelGeolocationPermissionRequest(
    content::WebContents* web_contents,
    int bridge_id,
    const GURL& requesting_frame) {
  AwContents* aw_contents = AwContents::FromWebContents(web_contents);
  if (aw_contents) {
    aw_contents->HideGeolocationPrompt(requesting_frame);
  }
}

}  // namespace android_webview