Index: android_webview/browser/aw_browser_context.h |
diff --git a/android_webview/browser/aw_browser_context.h b/android_webview/browser/aw_browser_context.h |
index d184cdeecd3fe6adfad7d7305cf79201c3a770a3..1175bf559c21e5446a9662d352b922e4b483b9e7 100644 |
--- a/android_webview/browser/aw_browser_context.h |
+++ b/android_webview/browser/aw_browser_context.h |
@@ -9,6 +9,7 @@ |
#include "base/file_path.h" |
#include "base/memory/ref_counted.h" |
#include "content/public/browser/browser_context.h" |
+#include "content/public/browser/geolocation_permission_context.h" |
namespace android_webview { |
@@ -16,7 +17,9 @@ class AwURLRequestContextGetter; |
class AwBrowserContext : public content::BrowserContext { |
public: |
- AwBrowserContext(const FilePath path); |
+ AwBrowserContext( |
+ const FilePath path, |
+ content::GeolocationPermissionContext* geolocation_permission_context); |
virtual ~AwBrowserContext(); |
// Called before BrowserThreads are created. |
@@ -51,6 +54,8 @@ class AwBrowserContext : public content::BrowserContext { |
FilePath context_storage_path_; |
scoped_refptr<AwURLRequestContextGetter> url_request_context_getter_; |
+ scoped_refptr<content::GeolocationPermissionContext> |
+ geolocation_permission_context_; |
AwDownloadManagerDelegate download_manager_delegate_; |