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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUEST_H_
#define EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUEST_H_
#include <stdint.h>
#include <memory>
#include "components/guest_view/browser/guest_view.h"
#include "extensions/browser/guest_view/extension_options/extension_options_guest_delegate.h"
#include "url/gurl.h"
namespace extensions {
class ExtensionOptionsGuest
: public guest_view::GuestView<ExtensionOptionsGuest> {
public:
static const char Type[];
static const guest_view::GuestViewHistogramValue HistogramValue;
~ExtensionOptionsGuest() override;
ExtensionOptionsGuest(const ExtensionOptionsGuest&) = delete;
ExtensionOptionsGuest& operator=(const ExtensionOptionsGuest&) = delete;
static std::unique_ptr<GuestViewBase> Create(
content::RenderFrameHost* owner_rfh);
private:
explicit ExtensionOptionsGuest(content::RenderFrameHost* owner_rfh);
// GuestViewBase implementation.
void CreateInnerPage(std::unique_ptr<GuestViewBase> owned_this,
scoped_refptr<content::SiteInstance> site_instance,
const base::Value::Dict& create_params,
GuestPageCreatedCallback callback) final;
void DidInitialize(const base::Value::Dict& create_params) final;
void DidAttachToEmbedder() final;
void MaybeRecreateGuestContents(
content::RenderFrameHost* outer_contents_frame) final;
void GuestViewDidStopLoading() final;
const char* GetAPINamespace() const final;
int GetTaskPrefix() const final;
bool IsPreferredSizeModeEnabled() const final;
void OnPreferredSizeChanged(const gfx::Size& pref_size) final;
// GuestpageHolder::Delegate implementation.
bool GuestHandleContextMenu(content::RenderFrameHost& render_frame_host,
const content::ContextMenuParams& params) final;
void GuestClose() final;
// content::WebContentsDelegate implementation.
content::WebContents* AddNewContents(
content::WebContents* source,
std::unique_ptr<content::WebContents> new_contents,
const GURL& target_url,
WindowOpenDisposition disposition,
const blink::mojom::WindowFeatures& window_features,
bool user_gesture,
bool* was_blocked) final;
content::WebContents* OpenURLFromTab(
content::WebContents* source,
const content::OpenURLParams& params,
base::OnceCallback<void(content::NavigationHandle&)>
navigation_handle_callback) final;
void CloseContents(content::WebContents* source) final;
bool HandleContextMenu(content::RenderFrameHost& render_frame_host,
const content::ContextMenuParams& params) final;
bool ShouldResumeRequestsForCreatedWindow() override;
bool IsWebContentsCreationOverridden(
content::RenderFrameHost* opener,
content::SiteInstance* source_site_instance,
content::mojom::WindowContainerType window_container_type,
const GURL& opener_url,
const std::string& frame_name,
const GURL& target_url) final;
content::WebContents* CreateCustomWebContents(
content::RenderFrameHost* opener,
content::SiteInstance* source_site_instance,
bool is_new_browsing_instance,
const GURL& opener_url,
const std::string& frame_name,
const GURL& target_url,
const content::StoragePartitionConfig& partition_config,
content::SessionStorageNamespace* session_storage_namespace) final;
// content::WebContentsObserver implementation.
void DidFinishNavigation(content::NavigationHandle* navigation_handle) final;
std::unique_ptr<extensions::ExtensionOptionsGuestDelegate>
extension_options_guest_delegate_;
GURL options_page_;
};
} // namespace extensions
#endif // EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUEST_H_
|