Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6187)

Unified Diff: chrome/browser/guest_view/web_view/chrome_web_view_permission_helper_delegate.h

Issue 468323002: Introduce WebViewPermissionHelperDelegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Clean up WebViewPermissionHelper. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/guest_view/web_view/chrome_web_view_permission_helper_delegate.h
diff --git a/chrome/browser/guest_view/web_view/chrome_web_view_permission_helper_delegate.h b/chrome/browser/guest_view/web_view/chrome_web_view_permission_helper_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..cc3a753351be80bc2c3d7f891edb6c104385553a
--- /dev/null
+++ b/chrome/browser/guest_view/web_view/chrome_web_view_permission_helper_delegate.h
@@ -0,0 +1,149 @@
+// Copyright 2014 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.
+
+#ifndef CHROME_BROWSER_GUEST_VIEW_WEB_VIEW_CHROME_WEB_VIEW_PERMISSION_HELPER_DELEGATE_H_
+#define CHROME_BROWSER_GUEST_VIEW_WEB_VIEW_CHROME_WEB_VIEW_PERMISSION_HELPER_DELEGATE_H_
+
+#include "chrome/browser/guest_view/web_view/web_view_permission_helper.h"
+#include "extensions/browser/guest_view/web_view/web_view_permission_helper_delegate.h"
+
+namespace extensions {
+class WebViewGuest;
+}
+
+class ChromeWebViewPermissionHelperDelegate :
+ public extensions::WebViewPermissionHelperDelegate {
+ public:
+ explicit ChromeWebViewPermissionHelperDelegate(
+ extensions::WebViewPermissionHelper& web_view_permission_helper);
Fady Samuel 2014/08/13 20:07:25 Pass by pointer (not reference) if we expect to ch
Xi Han 2014/08/13 21:30:57 Done.
+ virtual ~ChromeWebViewPermissionHelperDelegate();
+
+ virtual void RequestMediaAccessPermission(
+ content::WebContents* source,
+ const content::MediaStreamRequest& request,
+ const content::MediaResponseCallback& callback) OVERRIDE;
+ virtual void CanDownload(
+ content::RenderViewHost* render_view_host,
+ const GURL& url,
+ const std::string& request_method,
+ const base::Callback<void(bool)>& callback) OVERRIDE;
+ virtual void RequestPointerLockPermission(
+ bool user_gesture,
+ bool last_unlocked_by_target,
+ const base::Callback<void(bool)>& callback) OVERRIDE;
+
Fady Samuel 2014/08/13 20:07:25 nit: Remove line.
Xi Han 2014/08/13 21:30:57 Done.
+ virtual void RequestGeolocationPermission(
+ int bridge_id,
+ const GURL& requesting_frame,
+ bool user_gesture,
+ const base::Callback<void(bool)>& callback) OVERRIDE;
+ virtual void CancelGeolocationPermissionRequest(int bridge_id) OVERRIDE;
+
Fady Samuel 2014/08/13 20:07:25 nit: Remove line.
Xi Han 2014/08/13 21:30:56 Done.
+ virtual void RequestFileSystemPermission(
+ const GURL& url,
+ bool allowed_by_default,
+ const base::Callback<void(bool)>& callback) OVERRIDE;
+
Fady Samuel 2014/08/13 20:07:25 nit: Remove line.
Xi Han 2014/08/13 21:30:57 Done.
+ virtual void FileSystemAccessedAsync(
+ int render_process_id,
+ int render_frame_id,
+ int request_id,
+ const GURL& url,
+ bool blocked_by_policy) OVERRIDE;
+
Fady Samuel 2014/08/13 20:07:25 nit: Remove line.
Xi Han 2014/08/13 21:30:57 Done.
+ virtual void FileSystemAccessedSync(
+ int render_process_id,
+ int render_frame_id,
+ const GURL& url,
+ bool blocked_by_policy,
+ IPC::Message* reply_msg) OVERRIDE;
+
+#if defined(ENABLE_PLUGINS)
+ // content::WebContentsObserver implementation.
+ virtual bool OnMessageReceived(
+ const IPC::Message& message,
+ content::RenderFrameHost* render_frame_host) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+#endif // defined(ENABLE_PLUGINS)
+
+ private:
+#if defined(ENABLE_PLUGINS)
+ // Message handlers:
+ void OnBlockedUnauthorizedPlugin(const base::string16& name,
+ const std::string& identifier);
+ void OnCouldNotLoadPlugin(const base::FilePath& plugin_path);
+ void OnBlockedOutdatedPlugin(int placeholder_id,
+ const std::string& identifier);
+ void OnNPAPINotSupported(const std::string& identifier);
+ void OnOpenAboutPlugins();
+#if defined(ENABLE_PLUGIN_INSTALLATION)
+ void OnFindMissingPlugin(int placeholder_id, const std::string& mime_type);
+
+ void OnRemovePluginPlaceholderHost(int placeholder_id);
+#endif // defined(ENABLE_PLUGIN_INSTALLATION)
+
+ void OnPermissionResponse(const std::string& identifier,
+ bool allow,
+ const std::string& user_input);
+#endif // defiend(ENABLE_PLUGINS)
Fady Samuel 2014/08/13 20:07:25 s/defiend/defined
Xi Han 2014/08/13 21:30:57 Done.
+
+ void OnGeolocationPermissionResponse(
+ int bridge_id,
+ bool user_gesture,
+ const base::Callback<void(bool)>& callback,
+ bool allow,
+ const std::string& user_input);
+
+ void OnFileSystemPermissionResponse(
+ const base::Callback<void(bool)>& callback,
+ bool allow,
+ const std::string& user_input);
+
+ void OnMediaPermissionResponse(
+ const content::MediaStreamRequest& request,
+ const content::MediaResponseCallback& callback,
+ bool allow,
+ const std::string& user_input);
+
+ void OnDownloadPermissionResponse(
+ const base::Callback<void(bool)>& callback,
+ bool allow,
+ const std::string& user_input);
+
+ void OnPointerLockPermissionResponse(
+ const base::Callback<void(bool)>& callback,
+ bool allow,
+ const std::string& user_input);
+
+ // Bridge IDs correspond to a geolocation request. This method will remove
+ // the bookkeeping for a particular geolocation request associated with the
+ // provided |bridge_id|. It returns the request ID of the geolocation request.
+ int RemoveBridgeID(int bridge_id);
+
+ void FileSystemAccessedAsyncResponse(int render_process_id,
+ int render_frame_id,
+ int request_id,
+ const GURL& url,
+ bool allowed);
+
+ void FileSystemAccessedSyncResponse(int render_process_id,
+ int render_frame_id,
+ const GURL& url,
+ IPC::Message* reply_msg,
+ bool allowed);
+
+ extensions::WebViewPermissionHelper& web_view_permission_helper_;
Fady Samuel 2014/08/13 20:07:25 Make this a pointer.
Xi Han 2014/08/13 21:30:57 Done.
+
+ std::map<int, int> bridge_id_to_request_id_map_;
+
+ extensions::WebViewGuest* web_view_guest() {
Fady Samuel 2014/08/13 20:07:25 Move this up. All member variables should be at th
Xi Han 2014/08/13 21:30:57 Done.
+ return web_view_permission_helper_.web_view_guest();
+ }
+
+ base::WeakPtrFactory<ChromeWebViewPermissionHelperDelegate> weak_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(ChromeWebViewPermissionHelperDelegate);
+};
+
+#endif // CHROME_BROWSER_GUEST_VIEW_WEB_VIEW_CHROME_WEB_VIEW_PERMISSION_HELPER_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698