2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2014-04-24 08:45:25 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_API_ELECTRON_API_WEB_CONTENTS_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_API_ELECTRON_API_WEB_CONTENTS_H_
|
2014-04-24 08:45:25 +00:00
|
|
|
|
2019-04-02 22:38:16 +00:00
|
|
|
#include <map>
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2024-01-10 22:23:35 +00:00
|
|
|
#include <optional>
|
2014-10-24 12:57:44 +00:00
|
|
|
#include <string>
|
2020-07-30 16:17:57 +00:00
|
|
|
#include <utility>
|
2015-04-17 19:55:31 +00:00
|
|
|
#include <vector>
|
2014-10-24 12:57:44 +00:00
|
|
|
|
2023-05-11 20:07:39 +00:00
|
|
|
#include "base/memory/raw_ptr.h"
|
|
|
|
#include "base/memory/raw_ptr_exclusion.h"
|
2020-11-10 17:06:56 +00:00
|
|
|
#include "base/memory/weak_ptr.h"
|
2018-02-22 06:57:03 +00:00
|
|
|
#include "base/observer_list.h"
|
2018-10-25 06:43:50 +00:00
|
|
|
#include "base/observer_list_types.h"
|
2023-06-09 20:28:11 +00:00
|
|
|
#include "base/task/thread_pool.h"
|
2021-06-17 13:42:51 +00:00
|
|
|
#include "chrome/browser/devtools/devtools_eye_dropper.h"
|
2020-11-10 17:06:56 +00:00
|
|
|
#include "chrome/browser/devtools/devtools_file_system_indexer.h"
|
2021-10-28 14:23:05 +00:00
|
|
|
#include "chrome/browser/ui/exclusive_access/exclusive_access_context.h" // nogncheck
|
2023-06-09 20:28:11 +00:00
|
|
|
#include "chrome/browser/ui/exclusive_access/exclusive_access_manager.h"
|
2020-03-26 18:05:45 +00:00
|
|
|
#include "content/common/frame.mojom.h"
|
2019-10-02 12:38:27 +00:00
|
|
|
#include "content/public/browser/devtools_agent_host.h"
|
2023-12-06 01:36:23 +00:00
|
|
|
#include "content/public/browser/javascript_dialog_manager.h"
|
2017-06-16 21:35:43 +00:00
|
|
|
#include "content/public/browser/keyboard_event_processing_result.h"
|
2019-08-19 20:13:24 +00:00
|
|
|
#include "content/public/browser/render_widget_host.h"
|
2017-08-07 21:09:01 +00:00
|
|
|
#include "content/public/browser/web_contents.h"
|
2020-11-10 17:06:56 +00:00
|
|
|
#include "content/public/browser/web_contents_delegate.h"
|
2014-04-25 03:22:51 +00:00
|
|
|
#include "content/public/browser/web_contents_observer.h"
|
2018-10-01 20:00:53 +00:00
|
|
|
#include "electron/buildflags/buildflags.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "electron/shell/common/api/api.mojom.h"
|
2019-10-25 13:03:28 +00:00
|
|
|
#include "gin/handle.h"
|
2020-07-30 16:17:57 +00:00
|
|
|
#include "gin/wrappable.h"
|
2020-06-22 17:35:10 +00:00
|
|
|
#include "mojo/public/cpp/bindings/receiver_set.h"
|
2018-11-09 03:42:34 +00:00
|
|
|
#include "printing/buildflags/buildflags.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/api/frame_subscriber.h"
|
|
|
|
#include "shell/browser/api/save_page_handler.h"
|
2023-09-26 20:00:46 +00:00
|
|
|
#include "shell/browser/background_throttling_source.h"
|
2020-07-30 16:17:57 +00:00
|
|
|
#include "shell/browser/event_emitter_mixin.h"
|
2020-10-27 21:28:43 +00:00
|
|
|
#include "shell/browser/extended_web_contents_observer.h"
|
2020-11-10 17:06:56 +00:00
|
|
|
#include "shell/browser/ui/inspectable_web_contents.h"
|
|
|
|
#include "shell/browser/ui/inspectable_web_contents_delegate.h"
|
|
|
|
#include "shell/browser/ui/inspectable_web_contents_view_delegate.h"
|
2020-07-30 16:17:57 +00:00
|
|
|
#include "shell/common/gin_helper/cleaned_up_at_exit.h"
|
|
|
|
#include "shell/common/gin_helper/constructible.h"
|
2020-07-20 18:07:02 +00:00
|
|
|
#include "shell/common/gin_helper/error_thrower.h"
|
2021-07-26 16:02:16 +00:00
|
|
|
#include "shell/common/gin_helper/pinnable.h"
|
2023-02-03 11:43:42 +00:00
|
|
|
#include "ui/base/cursor/cursor.h"
|
2021-06-08 20:22:43 +00:00
|
|
|
#include "ui/base/models/image_model.h"
|
2015-04-20 06:50:04 +00:00
|
|
|
#include "ui/gfx/image/image.h"
|
2014-04-24 08:45:25 +00:00
|
|
|
|
2018-11-09 03:42:34 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINTING)
|
2022-10-20 18:30:40 +00:00
|
|
|
#include "components/printing/browser/print_to_pdf/pdf_print_result.h"
|
2021-05-19 23:15:47 +00:00
|
|
|
#include "shell/browser/printing/print_view_manager_electron.h"
|
2018-11-09 03:42:34 +00:00
|
|
|
#endif
|
|
|
|
|
2020-01-15 23:11:51 +00:00
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
2021-03-05 00:23:10 +00:00
|
|
|
#include "extensions/common/mojom/view_type.mojom.h"
|
2020-09-08 11:55:40 +00:00
|
|
|
|
2020-03-05 14:56:21 +00:00
|
|
|
namespace extensions {
|
|
|
|
class ScriptExecutor;
|
|
|
|
}
|
2020-01-15 23:11:51 +00:00
|
|
|
#endif
|
|
|
|
|
2015-09-18 03:06:38 +00:00
|
|
|
namespace blink {
|
2020-08-12 18:33:58 +00:00
|
|
|
struct DeviceEmulationParams;
|
2022-05-17 16:48:40 +00:00
|
|
|
// enum class PermissionType;
|
|
|
|
} // namespace blink
|
2015-09-18 03:06:38 +00:00
|
|
|
|
2019-10-25 13:03:28 +00:00
|
|
|
namespace gin_helper {
|
2014-11-03 14:12:56 +00:00
|
|
|
class Dictionary;
|
2019-10-25 13:03:28 +00:00
|
|
|
}
|
2014-11-03 14:12:56 +00:00
|
|
|
|
2018-04-11 08:42:14 +00:00
|
|
|
namespace network {
|
|
|
|
class ResourceRequestBody;
|
|
|
|
}
|
|
|
|
|
2020-05-11 20:42:24 +00:00
|
|
|
namespace gin {
|
2020-07-20 18:07:02 +00:00
|
|
|
class Arguments;
|
2020-11-17 19:13:58 +00:00
|
|
|
}
|
2020-05-11 20:42:24 +00:00
|
|
|
|
2022-11-07 18:15:57 +00:00
|
|
|
class SkRegion;
|
|
|
|
|
2014-04-24 08:45:25 +00:00
|
|
|
namespace electron {
|
|
|
|
|
2015-07-14 19:13:25 +00:00
|
|
|
class ElectronBrowserContext;
|
2018-10-19 13:50:30 +00:00
|
|
|
class InspectableWebContents;
|
2017-01-30 11:18:40 +00:00
|
|
|
class WebContentsZoomController;
|
2015-06-25 06:28:13 +00:00
|
|
|
class WebViewGuestDelegate;
|
2018-05-14 15:55:39 +00:00
|
|
|
class FrameSubscriber;
|
2020-11-10 17:06:56 +00:00
|
|
|
class WebDialogHelper;
|
|
|
|
class NativeWindow;
|
2018-11-30 05:25:02 +00:00
|
|
|
class OffScreenRenderWidgetHostView;
|
2020-11-10 17:06:56 +00:00
|
|
|
class OffScreenWebContentsView;
|
2018-03-20 01:25:51 +00:00
|
|
|
|
2015-06-25 06:28:13 +00:00
|
|
|
namespace api {
|
2015-05-29 03:12:55 +00:00
|
|
|
|
2023-12-13 21:01:03 +00:00
|
|
|
class BaseWindow;
|
|
|
|
|
2018-02-22 06:48:53 +00:00
|
|
|
// Wrapper around the content::WebContents.
|
2021-10-28 14:23:05 +00:00
|
|
|
class WebContents : public ExclusiveAccessContext,
|
|
|
|
public gin::Wrappable<WebContents>,
|
2020-07-30 16:17:57 +00:00
|
|
|
public gin_helper::EventEmitterMixin<WebContents>,
|
|
|
|
public gin_helper::Constructible<WebContents>,
|
2021-07-26 16:02:16 +00:00
|
|
|
public gin_helper::Pinnable<WebContents>,
|
2020-07-30 16:17:57 +00:00
|
|
|
public gin_helper::CleanedUpAtExit,
|
2019-04-02 22:38:16 +00:00
|
|
|
public content::WebContentsObserver,
|
2020-11-10 17:06:56 +00:00
|
|
|
public content::WebContentsDelegate,
|
2022-09-27 19:47:46 +00:00
|
|
|
public content::RenderWidgetHost::InputEventObserver,
|
2023-12-06 01:36:23 +00:00
|
|
|
public content::JavaScriptDialogManager,
|
2020-11-10 17:06:56 +00:00
|
|
|
public InspectableWebContentsDelegate,
|
2023-09-26 20:00:46 +00:00
|
|
|
public InspectableWebContentsViewDelegate,
|
|
|
|
public BackgroundThrottlingSource {
|
2014-04-24 08:45:25 +00:00
|
|
|
public:
|
2019-05-03 18:11:41 +00:00
|
|
|
enum class Type {
|
2020-10-27 17:51:45 +00:00
|
|
|
kBackgroundPage, // An extension background page.
|
|
|
|
kBrowserWindow, // Used by BrowserWindow.
|
2023-12-13 21:01:03 +00:00
|
|
|
kBrowserView, // Used by the JS implementation of BrowserView for
|
|
|
|
// backwards compatibility. Otherwise identical to
|
|
|
|
// kBrowserWindow.
|
2020-10-27 17:51:45 +00:00
|
|
|
kRemote, // Thin wrap around an existing WebContents.
|
|
|
|
kWebView, // Used by <webview>.
|
|
|
|
kOffScreen, // Used for offscreen rendering
|
2016-06-14 16:09:54 +00:00
|
|
|
};
|
|
|
|
|
2018-10-19 08:52:07 +00:00
|
|
|
// Create a new WebContents and return the V8 wrapper of it.
|
2020-07-30 16:17:57 +00:00
|
|
|
static gin::Handle<WebContents> New(v8::Isolate* isolate,
|
|
|
|
const gin_helper::Dictionary& options);
|
2018-10-19 08:52:07 +00:00
|
|
|
|
|
|
|
// Create a new V8 wrapper for an existing |web_content|.
|
|
|
|
//
|
|
|
|
// The lifetime of |web_contents| will be managed by this class.
|
2019-10-25 13:03:28 +00:00
|
|
|
static gin::Handle<WebContents> CreateAndTake(
|
2018-04-18 01:44:10 +00:00
|
|
|
v8::Isolate* isolate,
|
2018-10-22 18:02:25 +00:00
|
|
|
std::unique_ptr<content::WebContents> web_contents,
|
2018-04-18 01:44:10 +00:00
|
|
|
Type type);
|
2014-10-23 06:04:13 +00:00
|
|
|
|
2020-07-16 23:16:05 +00:00
|
|
|
// Get the api::WebContents associated with |web_contents|. Returns nullptr
|
|
|
|
// if there is no associated wrapper.
|
|
|
|
static WebContents* From(content::WebContents* web_contents);
|
|
|
|
static WebContents* FromID(int32_t id);
|
2023-08-09 12:47:19 +00:00
|
|
|
static std::list<WebContents*> GetWebContentsList();
|
2018-10-19 08:52:07 +00:00
|
|
|
|
|
|
|
// Get the V8 wrapper of the |web_contents|, or create one if not existed.
|
|
|
|
//
|
|
|
|
// The lifetime of |web_contents| is NOT managed by this class, and the type
|
|
|
|
// of this wrapper is always REMOTE.
|
2019-10-25 13:03:28 +00:00
|
|
|
static gin::Handle<WebContents> FromOrCreate(
|
2018-10-19 08:52:07 +00:00
|
|
|
v8::Isolate* isolate,
|
|
|
|
content::WebContents* web_contents);
|
2014-04-24 08:45:25 +00:00
|
|
|
|
2020-12-15 23:52:43 +00:00
|
|
|
static gin::Handle<WebContents> CreateFromWebPreferences(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
const gin_helper::Dictionary& web_preferences);
|
|
|
|
|
2023-07-10 09:49:20 +00:00
|
|
|
// gin_helper::Constructible
|
|
|
|
static void FillObjectTemplate(v8::Isolate*, v8::Local<v8::ObjectTemplate>);
|
|
|
|
static const char* GetClassName() { return "WebContents"; }
|
|
|
|
|
2020-07-30 16:17:57 +00:00
|
|
|
// gin::Wrappable
|
|
|
|
static gin::WrapperInfo kWrapperInfo;
|
|
|
|
const char* GetTypeName() override;
|
2016-04-25 01:17:54 +00:00
|
|
|
|
2021-03-15 22:43:25 +00:00
|
|
|
void Destroy();
|
2024-01-10 22:23:35 +00:00
|
|
|
void Close(std::optional<gin_helper::Dictionary> options);
|
2019-06-14 02:44:36 +00:00
|
|
|
base::WeakPtr<WebContents> GetWeakPtr() { return weak_factory_.GetWeakPtr(); }
|
|
|
|
|
2023-09-26 20:00:46 +00:00
|
|
|
bool GetBackgroundThrottling() const override;
|
2018-10-19 00:32:22 +00:00
|
|
|
void SetBackgroundThrottling(bool allowed);
|
2016-09-06 01:28:40 +00:00
|
|
|
int GetProcessID() const;
|
2017-05-15 20:29:34 +00:00
|
|
|
base::ProcessId GetOSProcessID() const;
|
2016-06-14 16:09:54 +00:00
|
|
|
Type GetType() const;
|
2015-06-23 08:16:10 +00:00
|
|
|
bool Equal(const WebContents* web_contents) const;
|
2019-10-25 13:03:28 +00:00
|
|
|
void LoadURL(const GURL& url, const gin_helper::Dictionary& options);
|
2021-04-27 23:11:18 +00:00
|
|
|
void Reload();
|
|
|
|
void ReloadIgnoringCache();
|
2023-08-17 12:17:55 +00:00
|
|
|
void DownloadURL(const GURL& url, gin::Arguments* args);
|
2015-09-15 01:17:45 +00:00
|
|
|
GURL GetURL() const;
|
2021-03-16 16:18:45 +00:00
|
|
|
std::u16string GetTitle() const;
|
2014-04-24 09:00:41 +00:00
|
|
|
bool IsLoading() const;
|
2016-04-18 17:37:08 +00:00
|
|
|
bool IsLoadingMainFrame() const;
|
2014-04-24 09:00:41 +00:00
|
|
|
bool IsWaitingForResponse() const;
|
|
|
|
void Stop();
|
2021-04-27 23:11:18 +00:00
|
|
|
bool CanGoBack() const;
|
2015-05-11 06:30:26 +00:00
|
|
|
void GoBack();
|
2021-04-27 23:11:18 +00:00
|
|
|
bool CanGoForward() const;
|
2015-05-11 06:30:26 +00:00
|
|
|
void GoForward();
|
2021-04-27 23:11:18 +00:00
|
|
|
bool CanGoToOffset(int offset) const;
|
2015-05-11 08:44:01 +00:00
|
|
|
void GoToOffset(int offset);
|
2021-04-27 23:11:18 +00:00
|
|
|
bool CanGoToIndex(int index) const;
|
|
|
|
void GoToIndex(int index);
|
|
|
|
int GetActiveIndex() const;
|
|
|
|
void ClearHistory();
|
|
|
|
int GetHistoryLength() const;
|
2017-03-09 03:06:26 +00:00
|
|
|
const std::string GetWebRTCIPHandlingPolicy() const;
|
|
|
|
void SetWebRTCIPHandlingPolicy(const std::string& webrtc_ip_handling_policy);
|
2023-08-24 21:21:22 +00:00
|
|
|
v8::Local<v8::Value> GetWebRTCUDPPortRange(v8::Isolate* isolate) const;
|
|
|
|
void SetWebRTCUDPPortRange(gin::Arguments* args);
|
2021-10-26 00:03:59 +00:00
|
|
|
std::string GetMediaSourceID(content::WebContents* request_web_contents);
|
2014-04-24 09:00:41 +00:00
|
|
|
bool IsCrashed() const;
|
2020-10-02 21:50:24 +00:00
|
|
|
void ForcefullyCrashRenderer();
|
2020-07-20 18:07:02 +00:00
|
|
|
void SetUserAgent(const std::string& user_agent);
|
2015-07-22 04:25:10 +00:00
|
|
|
std::string GetUserAgent();
|
2014-10-24 13:04:50 +00:00
|
|
|
void InsertCSS(const std::string& css);
|
2019-02-14 17:03:28 +00:00
|
|
|
v8::Local<v8::Promise> SavePage(const base::FilePath& full_file_path,
|
|
|
|
const content::SavePageType& save_type);
|
2020-07-20 18:07:02 +00:00
|
|
|
void OpenDevTools(gin::Arguments* args);
|
2014-11-03 14:12:56 +00:00
|
|
|
void CloseDevTools();
|
|
|
|
bool IsDevToolsOpened();
|
2016-01-01 05:11:21 +00:00
|
|
|
bool IsDevToolsFocused();
|
2023-08-15 05:32:53 +00:00
|
|
|
std::u16string GetDevToolsTitle();
|
|
|
|
void SetDevToolsTitle(const std::u16string& title);
|
2015-06-05 09:01:17 +00:00
|
|
|
void ToggleDevTools();
|
2020-08-12 18:33:58 +00:00
|
|
|
void EnableDeviceEmulation(const blink::DeviceEmulationParams& params);
|
2015-08-31 09:19:19 +00:00
|
|
|
void DisableDeviceEmulation();
|
2015-04-22 07:30:10 +00:00
|
|
|
void InspectElement(int x, int y);
|
2019-02-01 18:44:24 +00:00
|
|
|
void InspectSharedWorker();
|
2019-10-02 12:38:27 +00:00
|
|
|
void InspectSharedWorkerById(const std::string& workerId);
|
|
|
|
std::vector<scoped_refptr<content::DevToolsAgentHost>> GetAllSharedWorkers();
|
2015-06-05 07:41:03 +00:00
|
|
|
void InspectServiceWorker();
|
2017-06-25 19:01:05 +00:00
|
|
|
void SetIgnoreMenuShortcuts(bool ignore);
|
2015-06-15 13:40:49 +00:00
|
|
|
void SetAudioMuted(bool muted);
|
|
|
|
bool IsAudioMuted();
|
2018-07-12 11:35:11 +00:00
|
|
|
bool IsCurrentlyAudible();
|
2016-09-08 17:01:01 +00:00
|
|
|
void SetEmbedder(const WebContents* embedder);
|
2017-11-30 07:37:26 +00:00
|
|
|
void SetDevToolsWebContents(const WebContents* devtools);
|
2020-07-16 21:11:44 +00:00
|
|
|
v8::Local<v8::Value> GetNativeView(v8::Isolate* isolate) const;
|
2020-01-25 00:43:42 +00:00
|
|
|
bool IsBeingCaptured();
|
2021-03-15 22:43:25 +00:00
|
|
|
void HandleNewRenderFrame(content::RenderFrameHost* render_frame_host);
|
2015-01-19 20:09:47 +00:00
|
|
|
|
2018-11-09 03:42:34 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINTING)
|
2022-07-13 10:23:24 +00:00
|
|
|
void OnGetDeviceNameToUse(base::Value::Dict print_settings,
|
|
|
|
printing::CompletionCallback print_callback,
|
|
|
|
bool silent,
|
|
|
|
// <error, device_name>
|
|
|
|
std::pair<std::string, std::u16string> info);
|
2020-07-20 18:07:02 +00:00
|
|
|
void Print(gin::Arguments* args);
|
2015-06-09 05:07:40 +00:00
|
|
|
// Print current page as PDF.
|
2022-05-31 06:21:25 +00:00
|
|
|
v8::Local<v8::Promise> PrintToPDF(const base::Value& settings);
|
|
|
|
void OnPDFCreated(gin_helper::Promise<v8::Local<v8::Value>> promise,
|
2022-10-20 18:30:40 +00:00
|
|
|
print_to_pdf::PdfPrintResult print_result,
|
2022-05-31 06:21:25 +00:00
|
|
|
scoped_refptr<base::RefCountedMemory> data);
|
2018-11-09 03:42:34 +00:00
|
|
|
#endif
|
2015-06-09 05:07:40 +00:00
|
|
|
|
2020-11-10 17:06:03 +00:00
|
|
|
void SetNextChildWebPreferences(const gin_helper::Dictionary);
|
|
|
|
|
2015-07-24 09:39:11 +00:00
|
|
|
// DevTools workspace api.
|
2020-07-20 18:07:02 +00:00
|
|
|
void AddWorkSpace(gin::Arguments* args, const base::FilePath& path);
|
|
|
|
void RemoveWorkSpace(gin::Arguments* args, const base::FilePath& path);
|
2015-07-24 09:39:11 +00:00
|
|
|
|
2015-01-19 20:09:47 +00:00
|
|
|
// Editing commands.
|
|
|
|
void Undo();
|
|
|
|
void Redo();
|
|
|
|
void Cut();
|
|
|
|
void Copy();
|
2023-05-03 01:14:29 +00:00
|
|
|
void CenterSelection();
|
2015-01-19 20:09:47 +00:00
|
|
|
void Paste();
|
2015-05-15 07:15:19 +00:00
|
|
|
void PasteAndMatchStyle();
|
2015-01-19 20:09:47 +00:00
|
|
|
void Delete();
|
|
|
|
void SelectAll();
|
|
|
|
void Unselect();
|
2023-05-03 01:14:29 +00:00
|
|
|
void ScrollToTopOfDocument();
|
|
|
|
void ScrollToBottomOfDocument();
|
|
|
|
void AdjustSelectionByCharacterOffset(gin::Arguments* args);
|
2021-03-16 16:18:45 +00:00
|
|
|
void Replace(const std::u16string& word);
|
|
|
|
void ReplaceMisspelling(const std::u16string& word);
|
2020-07-20 18:07:02 +00:00
|
|
|
uint32_t FindInPage(gin::Arguments* args);
|
2015-12-17 17:27:56 +00:00
|
|
|
void StopFindInPage(content::StopFindAction action);
|
2016-06-02 17:12:38 +00:00
|
|
|
void ShowDefinitionForSelection();
|
2016-07-26 19:06:11 +00:00
|
|
|
void CopyImageAt(int x, int y);
|
2015-01-19 20:09:47 +00:00
|
|
|
|
2015-07-24 04:58:28 +00:00
|
|
|
// Focus.
|
|
|
|
void Focus();
|
2016-08-03 03:29:55 +00:00
|
|
|
bool IsFocused() const;
|
2015-07-24 04:58:28 +00:00
|
|
|
|
2015-09-18 06:20:31 +00:00
|
|
|
// Send WebInputEvent to the page.
|
|
|
|
void SendInputEvent(v8::Isolate* isolate, v8::Local<v8::Value> input_event);
|
|
|
|
|
2015-09-18 07:57:43 +00:00
|
|
|
// Subscribe to the frame updates.
|
2020-07-20 18:07:02 +00:00
|
|
|
void BeginFrameSubscription(gin::Arguments* args);
|
2015-09-18 07:57:43 +00:00
|
|
|
void EndFrameSubscription();
|
|
|
|
|
2016-07-03 03:26:43 +00:00
|
|
|
// Dragging native items.
|
2020-07-20 18:07:02 +00:00
|
|
|
void StartDrag(const gin_helper::Dictionary& item, gin::Arguments* args);
|
2016-07-03 03:26:43 +00:00
|
|
|
|
2016-07-05 22:43:57 +00:00
|
|
|
// Captures the page with |rect|, |callback| would be called when capturing is
|
|
|
|
// done.
|
2020-07-20 18:07:02 +00:00
|
|
|
v8::Local<v8::Promise> CapturePage(gin::Arguments* args);
|
2016-07-05 22:43:57 +00:00
|
|
|
|
2015-06-25 06:28:13 +00:00
|
|
|
// Methods for creating <webview>.
|
2015-06-05 07:18:15 +00:00
|
|
|
bool IsGuest() const;
|
2018-08-16 22:57:40 +00:00
|
|
|
void AttachToIframe(content::WebContents* embedder_web_contents,
|
|
|
|
int embedder_frame_id);
|
2019-01-12 06:50:33 +00:00
|
|
|
void DetachFromOuterFrame();
|
2016-07-29 12:50:27 +00:00
|
|
|
|
2016-07-30 13:40:16 +00:00
|
|
|
// Methods for offscreen rendering
|
2016-07-28 10:10:56 +00:00
|
|
|
bool IsOffScreen() const;
|
2016-08-04 04:22:19 +00:00
|
|
|
void OnPaint(const gfx::Rect& dirty_rect, const SkBitmap& bitmap);
|
2016-07-30 13:40:16 +00:00
|
|
|
void StartPainting();
|
|
|
|
void StopPainting();
|
|
|
|
bool IsPainting() const;
|
2016-07-31 10:19:56 +00:00
|
|
|
void SetFrameRate(int frame_rate);
|
2016-07-30 13:40:16 +00:00
|
|
|
int GetFrameRate() const;
|
2016-09-01 17:25:12 +00:00
|
|
|
void Invalidate();
|
2019-07-03 01:22:09 +00:00
|
|
|
gfx::Size GetSizeForNewRenderView(content::WebContents*) override;
|
2014-10-24 08:09:18 +00:00
|
|
|
|
2017-01-29 14:13:20 +00:00
|
|
|
// Methods for zoom handling.
|
|
|
|
void SetZoomLevel(double level);
|
2018-08-09 17:15:23 +00:00
|
|
|
double GetZoomLevel() const;
|
2020-03-13 23:13:05 +00:00
|
|
|
void SetZoomFactor(gin_helper::ErrorThrower thrower, double factor);
|
2018-08-09 17:15:23 +00:00
|
|
|
double GetZoomFactor() const;
|
2017-01-29 14:13:20 +00:00
|
|
|
|
2016-02-01 10:03:38 +00:00
|
|
|
// Callback triggered on permission response.
|
2019-10-28 22:12:35 +00:00
|
|
|
void OnEnterFullscreenModeForTab(
|
2020-06-01 20:34:34 +00:00
|
|
|
content::RenderFrameHost* requesting_frame,
|
2019-10-28 22:12:35 +00:00
|
|
|
const blink::mojom::FullscreenOptions& options,
|
|
|
|
bool allowed);
|
2016-02-01 10:03:38 +00:00
|
|
|
|
2016-03-31 00:58:23 +00:00
|
|
|
// Create window with the given disposition.
|
2018-04-18 01:44:10 +00:00
|
|
|
void OnCreateWindow(const GURL& target_url,
|
|
|
|
const content::Referrer& referrer,
|
|
|
|
const std::string& frame_name,
|
|
|
|
WindowOpenDisposition disposition,
|
2020-03-26 18:05:45 +00:00
|
|
|
const std::string& features,
|
2018-04-11 08:42:14 +00:00
|
|
|
const scoped_refptr<network::ResourceRequestBody>& body);
|
2016-03-31 00:58:23 +00:00
|
|
|
|
2018-08-10 22:19:49 +00:00
|
|
|
// Returns the preload script path of current WebContents.
|
2020-11-10 17:06:03 +00:00
|
|
|
std::vector<base::FilePath> GetPreloadPaths() const;
|
2018-08-10 22:19:49 +00:00
|
|
|
|
2015-09-22 13:56:56 +00:00
|
|
|
// Returns the web preferences of current WebContents.
|
2018-08-09 17:15:23 +00:00
|
|
|
v8::Local<v8::Value> GetLastWebPreferences(v8::Isolate* isolate) const;
|
2015-09-22 13:56:56 +00:00
|
|
|
|
2015-10-01 05:45:59 +00:00
|
|
|
// Returns the owner window.
|
2020-07-16 21:11:44 +00:00
|
|
|
v8::Local<v8::Value> GetOwnerBrowserWindow(v8::Isolate* isolate) const;
|
2015-10-01 05:45:59 +00:00
|
|
|
|
2020-05-26 13:21:38 +00:00
|
|
|
// Notifies the web page that there is user interaction.
|
|
|
|
void NotifyUserActivation();
|
|
|
|
|
2020-07-16 21:11:44 +00:00
|
|
|
v8::Local<v8::Promise> TakeHeapSnapshot(v8::Isolate* isolate,
|
|
|
|
const base::FilePath& file_path);
|
2021-10-05 22:30:31 +00:00
|
|
|
v8::Local<v8::Promise> GetProcessMemoryInfo(v8::Isolate* isolate);
|
2018-09-18 18:00:31 +00:00
|
|
|
|
2023-04-27 10:54:51 +00:00
|
|
|
bool HandleContextMenu(content::RenderFrameHost& render_frame_host,
|
|
|
|
const content::ContextMenuParams& params) override;
|
|
|
|
|
2015-10-01 03:14:19 +00:00
|
|
|
// Properties.
|
2020-07-30 16:17:57 +00:00
|
|
|
int32_t ID() const { return id_; }
|
2015-10-01 03:14:19 +00:00
|
|
|
v8::Local<v8::Value> Session(v8::Isolate* isolate);
|
2019-08-19 20:13:24 +00:00
|
|
|
content::WebContents* HostWebContents() const;
|
2015-10-01 03:14:19 +00:00
|
|
|
v8::Local<v8::Value> DevToolsWebContents(v8::Isolate* isolate);
|
2016-01-21 18:22:23 +00:00
|
|
|
v8::Local<v8::Value> Debugger(v8::Isolate* isolate);
|
2020-10-09 16:50:46 +00:00
|
|
|
content::RenderFrameHost* MainFrame();
|
2022-09-26 16:37:08 +00:00
|
|
|
content::RenderFrameHost* Opener();
|
2015-10-01 03:14:19 +00:00
|
|
|
|
2017-01-30 11:18:40 +00:00
|
|
|
WebContentsZoomController* GetZoomController() { return zoom_controller_; }
|
|
|
|
|
2018-02-22 06:57:03 +00:00
|
|
|
void AddObserver(ExtendedWebContentsObserver* obs) {
|
|
|
|
observers_.AddObserver(obs);
|
|
|
|
}
|
|
|
|
void RemoveObserver(ExtendedWebContentsObserver* obs) {
|
2018-11-19 16:47:04 +00:00
|
|
|
// Trying to remove from an empty collection leads to an access violation
|
2021-03-05 00:25:30 +00:00
|
|
|
if (!observers_.empty())
|
2018-11-19 16:47:04 +00:00
|
|
|
observers_.RemoveObserver(obs);
|
2018-02-22 06:57:03 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 15:42:43 +00:00
|
|
|
bool EmitNavigationEvent(const std::string& event,
|
|
|
|
content::NavigationHandle* navigation_handle);
|
|
|
|
|
2020-07-30 16:17:57 +00:00
|
|
|
// this.emit(name, new Event(sender, message), args...);
|
|
|
|
template <typename... Args>
|
|
|
|
bool EmitWithSender(base::StringPiece name,
|
2023-02-13 21:39:18 +00:00
|
|
|
content::RenderFrameHost* frame,
|
2022-03-19 02:50:05 +00:00
|
|
|
electron::mojom::ElectronApiIPC::InvokeCallback callback,
|
2020-07-30 16:17:57 +00:00
|
|
|
Args&&... args) {
|
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
|
|
|
v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
2023-02-13 21:39:18 +00:00
|
|
|
|
|
|
|
gin::Handle<gin_helper::internal::Event> event =
|
|
|
|
MakeEventWithSender(isolate, frame, std::move(callback));
|
|
|
|
if (event.IsEmpty())
|
2020-07-30 16:17:57 +00:00
|
|
|
return false;
|
2023-02-13 21:39:18 +00:00
|
|
|
EmitWithoutEvent(name, event, std::forward<Args>(args)...);
|
|
|
|
return event->GetDefaultPrevented();
|
2020-07-30 16:17:57 +00:00
|
|
|
}
|
|
|
|
|
2023-02-13 21:39:18 +00:00
|
|
|
gin::Handle<gin_helper::internal::Event> MakeEventWithSender(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
content::RenderFrameHost* frame,
|
|
|
|
electron::mojom::ElectronApiIPC::InvokeCallback callback);
|
|
|
|
|
2019-08-19 20:13:24 +00:00
|
|
|
WebContents* embedder() { return embedder_; }
|
|
|
|
|
2020-01-15 23:11:51 +00:00
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
extensions::ScriptExecutor* script_executor() {
|
|
|
|
return script_executor_.get();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-11-10 17:06:56 +00:00
|
|
|
// Set the window as owner window.
|
|
|
|
void SetOwnerWindow(NativeWindow* owner_window);
|
|
|
|
void SetOwnerWindow(content::WebContents* web_contents,
|
|
|
|
NativeWindow* owner_window);
|
2024-01-10 22:23:35 +00:00
|
|
|
void SetOwnerBaseWindow(std::optional<BaseWindow*> owner_window);
|
2020-11-10 17:06:56 +00:00
|
|
|
|
|
|
|
// Returns the WebContents managed by this delegate.
|
|
|
|
content::WebContents* GetWebContents() const;
|
|
|
|
|
|
|
|
// Returns the WebContents of devtools.
|
|
|
|
content::WebContents* GetDevToolsWebContents() const;
|
|
|
|
|
2020-11-17 22:15:20 +00:00
|
|
|
InspectableWebContents* inspectable_web_contents() const {
|
|
|
|
return inspectable_web_contents_.get();
|
2020-11-10 17:06:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NativeWindow* owner_window() const { return owner_window_.get(); }
|
|
|
|
|
|
|
|
bool is_html_fullscreen() const { return html_fullscreen_; }
|
|
|
|
|
|
|
|
void set_fullscreen_frame(content::RenderFrameHost* rfh) {
|
|
|
|
fullscreen_frame_ = rfh;
|
|
|
|
}
|
|
|
|
|
2022-03-19 02:50:05 +00:00
|
|
|
// mojom::ElectronApiIPC
|
2020-12-14 18:57:36 +00:00
|
|
|
void Message(bool internal,
|
|
|
|
const std::string& channel,
|
|
|
|
blink::CloneableMessage arguments,
|
|
|
|
content::RenderFrameHost* render_frame_host);
|
|
|
|
void Invoke(bool internal,
|
|
|
|
const std::string& channel,
|
|
|
|
blink::CloneableMessage arguments,
|
2022-03-19 02:50:05 +00:00
|
|
|
electron::mojom::ElectronApiIPC::InvokeCallback callback,
|
2020-12-14 18:57:36 +00:00
|
|
|
content::RenderFrameHost* render_frame_host);
|
|
|
|
void ReceivePostMessage(const std::string& channel,
|
|
|
|
blink::TransferableMessage message,
|
|
|
|
content::RenderFrameHost* render_frame_host);
|
|
|
|
void MessageSync(
|
|
|
|
bool internal,
|
|
|
|
const std::string& channel,
|
|
|
|
blink::CloneableMessage arguments,
|
2022-03-19 02:50:05 +00:00
|
|
|
electron::mojom::ElectronApiIPC::MessageSyncCallback callback,
|
2020-12-14 18:57:36 +00:00
|
|
|
content::RenderFrameHost* render_frame_host);
|
|
|
|
void MessageHost(const std::string& channel,
|
|
|
|
blink::CloneableMessage arguments,
|
|
|
|
content::RenderFrameHost* render_frame_host);
|
2022-03-19 02:50:05 +00:00
|
|
|
|
|
|
|
// mojom::ElectronWebContentsUtility
|
|
|
|
void OnFirstNonEmptyLayout(content::RenderFrameHost* render_frame_host);
|
2020-12-14 18:57:36 +00:00
|
|
|
void UpdateDraggableRegions(std::vector<mojom::DraggableRegionPtr> regions);
|
|
|
|
void SetTemporaryZoomLevel(double level);
|
|
|
|
void DoGetZoomLevel(
|
2022-03-19 02:50:05 +00:00
|
|
|
electron::mojom::ElectronWebContentsUtility::DoGetZoomLevelCallback
|
|
|
|
callback);
|
|
|
|
|
2021-06-08 02:00:22 +00:00
|
|
|
void SetImageAnimationPolicy(const std::string& new_policy);
|
2020-12-14 18:57:36 +00:00
|
|
|
|
2022-09-27 19:47:46 +00:00
|
|
|
// content::RenderWidgetHost::InputEventObserver:
|
|
|
|
void OnInputEvent(const blink::WebInputEvent& event) override;
|
|
|
|
|
2023-12-06 01:36:23 +00:00
|
|
|
// content::JavaScriptDialogManager:
|
|
|
|
void RunJavaScriptDialog(content::WebContents* web_contents,
|
|
|
|
content::RenderFrameHost* rfh,
|
|
|
|
content::JavaScriptDialogType dialog_type,
|
|
|
|
const std::u16string& message_text,
|
|
|
|
const std::u16string& default_prompt_text,
|
|
|
|
DialogClosedCallback callback,
|
|
|
|
bool* did_suppress_message) override;
|
|
|
|
void RunBeforeUnloadDialog(content::WebContents* web_contents,
|
|
|
|
content::RenderFrameHost* rfh,
|
|
|
|
bool is_reload,
|
|
|
|
DialogClosedCallback callback) override;
|
|
|
|
void CancelDialogs(content::WebContents* web_contents,
|
|
|
|
bool reset_state) override;
|
|
|
|
|
2024-01-10 22:23:35 +00:00
|
|
|
void SetBackgroundColor(std::optional<SkColor> color);
|
2023-12-13 21:01:03 +00:00
|
|
|
|
2023-02-24 00:05:30 +00:00
|
|
|
SkRegion* draggable_region() {
|
|
|
|
return force_non_draggable_ ? nullptr : draggable_region_.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetForceNonDraggable(bool force_non_draggable) {
|
|
|
|
force_non_draggable_ = force_non_draggable;
|
|
|
|
}
|
2022-11-07 18:15:57 +00:00
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
WebContents(const WebContents&) = delete;
|
|
|
|
WebContents& operator=(const WebContents&) = delete;
|
|
|
|
|
2020-11-10 17:06:56 +00:00
|
|
|
private:
|
2018-10-19 08:52:07 +00:00
|
|
|
// Does not manage lifetime of |web_contents|.
|
|
|
|
WebContents(v8::Isolate* isolate, content::WebContents* web_contents);
|
|
|
|
// Takes over ownership of |web_contents|.
|
2016-08-17 00:15:10 +00:00
|
|
|
WebContents(v8::Isolate* isolate,
|
2018-10-22 18:02:25 +00:00
|
|
|
std::unique_ptr<content::WebContents> web_contents,
|
2016-08-17 00:15:10 +00:00
|
|
|
Type type);
|
2018-10-19 08:52:07 +00:00
|
|
|
// Creates a new content::WebContents.
|
2019-10-25 13:03:28 +00:00
|
|
|
WebContents(v8::Isolate* isolate, const gin_helper::Dictionary& options);
|
2018-04-17 23:03:51 +00:00
|
|
|
~WebContents() override;
|
2014-04-24 08:45:25 +00:00
|
|
|
|
2021-09-27 07:20:55 +00:00
|
|
|
// Delete this if garbage collection has not started.
|
|
|
|
void DeleteThisIfAlive();
|
|
|
|
|
2020-11-10 17:06:56 +00:00
|
|
|
// Creates a InspectableWebContents object and takes ownership of
|
|
|
|
// |web_contents|.
|
2021-09-20 00:34:11 +00:00
|
|
|
void InitWithWebContents(std::unique_ptr<content::WebContents> web_contents,
|
2020-11-10 17:06:56 +00:00
|
|
|
ElectronBrowserContext* browser_context,
|
|
|
|
bool is_guest);
|
|
|
|
|
2018-10-22 18:02:25 +00:00
|
|
|
void InitWithSessionAndOptions(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
std::unique_ptr<content::WebContents> web_contents,
|
2019-10-25 13:03:28 +00:00
|
|
|
gin::Handle<class Session> session,
|
|
|
|
const gin_helper::Dictionary& options);
|
2016-08-17 00:15:10 +00:00
|
|
|
|
2020-09-08 11:55:40 +00:00
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
void InitWithExtensionView(v8::Isolate* isolate,
|
|
|
|
content::WebContents* web_contents,
|
2021-03-05 00:23:10 +00:00
|
|
|
extensions::mojom::ViewType view_type);
|
2020-09-08 11:55:40 +00:00
|
|
|
#endif
|
|
|
|
|
2014-10-24 10:06:32 +00:00
|
|
|
// content::WebContentsDelegate:
|
2017-01-23 09:59:40 +00:00
|
|
|
bool DidAddMessageToConsole(content::WebContents* source,
|
2019-05-01 00:18:22 +00:00
|
|
|
blink::mojom::ConsoleMessageLevel level,
|
2021-03-16 16:18:45 +00:00
|
|
|
const std::u16string& message,
|
2017-01-23 09:59:40 +00:00
|
|
|
int32_t line_no,
|
2021-03-16 16:18:45 +00:00
|
|
|
const std::u16string& source_id) override;
|
2020-04-13 15:37:41 +00:00
|
|
|
bool IsWebContentsCreationOverridden(
|
|
|
|
content::SiteInstance* source_site_instance,
|
|
|
|
content::mojom::WindowContainerType window_container_type,
|
|
|
|
const GURL& opener_url,
|
2020-11-10 17:06:03 +00:00
|
|
|
const content::mojom::CreateNewWindowParams& params) override;
|
2020-04-13 15:37:41 +00:00
|
|
|
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,
|
2022-02-25 18:17:35 +00:00
|
|
|
const content::StoragePartitionConfig& partition_config,
|
2020-04-13 15:37:41 +00:00
|
|
|
content::SessionStorageNamespace* session_storage_namespace) override;
|
2020-03-26 18:05:45 +00:00
|
|
|
void WebContentsCreatedWithFullParams(
|
|
|
|
content::WebContents* source_contents,
|
|
|
|
int opener_render_process_id,
|
|
|
|
int opener_render_frame_id,
|
|
|
|
const content::mojom::CreateNewWindowParams& params,
|
|
|
|
content::WebContents* new_contents) override;
|
2016-08-16 00:13:18 +00:00
|
|
|
void AddNewContents(content::WebContents* source,
|
2018-09-15 00:16:22 +00:00
|
|
|
std::unique_ptr<content::WebContents> new_contents,
|
2020-05-26 20:06:26 +00:00
|
|
|
const GURL& target_url,
|
2016-08-16 00:13:18 +00:00
|
|
|
WindowOpenDisposition disposition,
|
2022-09-07 07:46:37 +00:00
|
|
|
const blink::mojom::WindowFeatures& window_features,
|
2016-08-16 00:13:18 +00:00
|
|
|
bool user_gesture,
|
|
|
|
bool* was_blocked) override;
|
2014-10-24 13:46:47 +00:00
|
|
|
content::WebContents* OpenURLFromTab(
|
2014-10-24 10:06:32 +00:00
|
|
|
content::WebContents* source,
|
|
|
|
const content::OpenURLParams& params) override;
|
2015-06-25 03:07:23 +00:00
|
|
|
void BeforeUnloadFired(content::WebContents* tab,
|
|
|
|
bool proceed,
|
|
|
|
bool* proceed_to_fire_unload) override;
|
2018-10-02 21:56:09 +00:00
|
|
|
void SetContentsBounds(content::WebContents* source,
|
|
|
|
const gfx::Rect& pos) override;
|
2015-06-25 03:07:23 +00:00
|
|
|
void CloseContents(content::WebContents* source) override;
|
|
|
|
void ActivateContents(content::WebContents* contents) override;
|
2016-06-07 06:56:19 +00:00
|
|
|
void UpdateTargetURL(content::WebContents* source, const GURL& url) override;
|
2019-01-09 20:01:49 +00:00
|
|
|
bool HandleKeyboardEvent(
|
2014-10-24 13:46:47 +00:00
|
|
|
content::WebContents* source,
|
|
|
|
const content::NativeWebKeyboardEvent& event) override;
|
2020-11-10 17:06:56 +00:00
|
|
|
bool PlatformHandleKeyboardEvent(
|
|
|
|
content::WebContents* source,
|
|
|
|
const content::NativeWebKeyboardEvent& event);
|
2017-06-16 21:35:43 +00:00
|
|
|
content::KeyboardEventProcessingResult PreHandleKeyboardEvent(
|
|
|
|
content::WebContents* source,
|
|
|
|
const content::NativeWebKeyboardEvent& event) override;
|
2019-05-14 06:40:40 +00:00
|
|
|
void ContentsZoomChange(bool zoom_in) override;
|
2018-09-15 00:17:50 +00:00
|
|
|
void EnterFullscreenModeForTab(
|
2020-06-01 20:34:34 +00:00
|
|
|
content::RenderFrameHost* requesting_frame,
|
2019-10-28 22:12:35 +00:00
|
|
|
const blink::mojom::FullscreenOptions& options) override;
|
2015-05-09 12:17:40 +00:00
|
|
|
void ExitFullscreenModeForTab(content::WebContents* source) override;
|
2017-01-23 09:59:40 +00:00
|
|
|
void RendererUnresponsive(
|
|
|
|
content::WebContents* source,
|
2018-10-02 21:57:14 +00:00
|
|
|
content::RenderWidgetHost* render_widget_host,
|
|
|
|
base::RepeatingClosure hang_monitor_restarter) override;
|
2018-04-11 15:23:16 +00:00
|
|
|
void RendererResponsive(
|
|
|
|
content::WebContents* source,
|
|
|
|
content::RenderWidgetHost* render_widget_host) override;
|
2015-12-17 17:27:56 +00:00
|
|
|
void FindReply(content::WebContents* web_contents,
|
|
|
|
int request_id,
|
|
|
|
int number_of_matches,
|
|
|
|
const gfx::Rect& selection_rect,
|
|
|
|
int active_match_ordinal,
|
|
|
|
bool final_update) override;
|
2023-11-06 19:54:31 +00:00
|
|
|
void OnRequestToLockMouse(content::WebContents* web_contents,
|
|
|
|
bool user_gesture,
|
|
|
|
bool last_unlocked_by_target,
|
|
|
|
bool allowed);
|
2022-02-09 09:40:50 +00:00
|
|
|
void RequestToLockMouse(content::WebContents* web_contents,
|
|
|
|
bool user_gesture,
|
|
|
|
bool last_unlocked_by_target) override;
|
|
|
|
void LostMouseLock() override;
|
2023-11-06 19:54:31 +00:00
|
|
|
void OnRequestKeyboardLock(content::WebContents* web_contents,
|
|
|
|
bool esc_key_locked,
|
|
|
|
bool allowed);
|
2021-10-28 14:23:05 +00:00
|
|
|
void RequestKeyboardLock(content::WebContents* web_contents,
|
|
|
|
bool esc_key_locked) override;
|
|
|
|
void CancelKeyboardLockRequest(content::WebContents* web_contents) override;
|
2018-09-09 14:30:28 +00:00
|
|
|
bool CheckMediaAccessPermission(content::RenderFrameHost* render_frame_host,
|
2023-11-28 21:40:12 +00:00
|
|
|
const url::Origin& security_origin,
|
2019-07-03 01:22:09 +00:00
|
|
|
blink::mojom::MediaStreamType type) override;
|
2016-01-23 13:29:47 +00:00
|
|
|
void RequestMediaAccessPermission(
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
const content::MediaStreamRequest& request,
|
2018-10-02 18:09:25 +00:00
|
|
|
content::MediaResponseCallback callback) override;
|
2017-04-28 00:28:48 +00:00
|
|
|
content::JavaScriptDialogManager* GetJavaScriptDialogManager(
|
|
|
|
content::WebContents* source) override;
|
2018-09-15 00:18:14 +00:00
|
|
|
void OnAudioStateChanged(bool audible) override;
|
2020-10-21 22:44:19 +00:00
|
|
|
void UpdatePreferredSize(content::WebContents* web_contents,
|
|
|
|
const gfx::Size& pref_size) override;
|
2014-10-24 10:06:32 +00:00
|
|
|
|
2014-10-23 09:54:52 +00:00
|
|
|
// content::WebContentsObserver:
|
2023-03-10 16:07:42 +00:00
|
|
|
void BeforeUnloadFired(bool proceed) override;
|
2022-01-27 14:56:35 +00:00
|
|
|
void OnBackgroundColorChanged() override;
|
2019-12-02 18:29:03 +00:00
|
|
|
void RenderFrameCreated(content::RenderFrameHost* render_frame_host) override;
|
2021-08-18 18:23:41 +00:00
|
|
|
void RenderFrameDeleted(content::RenderFrameHost* render_frame_host) override;
|
|
|
|
void RenderFrameHostChanged(content::RenderFrameHost* old_host,
|
|
|
|
content::RenderFrameHost* new_host) override;
|
|
|
|
void FrameDeleted(int frame_tree_node_id) override;
|
2014-12-09 22:38:43 +00:00
|
|
|
void RenderViewDeleted(content::RenderViewHost*) override;
|
2021-11-24 08:45:59 +00:00
|
|
|
void PrimaryMainFrameRenderProcessGone(
|
|
|
|
base::TerminationStatus status) override;
|
2019-10-18 19:57:34 +00:00
|
|
|
void DOMContentLoaded(content::RenderFrameHost* render_frame_host) override;
|
2014-12-09 22:38:43 +00:00
|
|
|
void DidFinishLoad(content::RenderFrameHost* render_frame_host,
|
|
|
|
const GURL& validated_url) override;
|
|
|
|
void DidFailLoad(content::RenderFrameHost* render_frame_host,
|
|
|
|
const GURL& validated_url,
|
2020-01-29 12:01:37 +00:00
|
|
|
int error_code) override;
|
2015-05-22 07:24:34 +00:00
|
|
|
void DidStartLoading() override;
|
|
|
|
void DidStopLoading() override;
|
2018-04-26 10:17:55 +00:00
|
|
|
void DidStartNavigation(
|
|
|
|
content::NavigationHandle* navigation_handle) override;
|
2018-09-15 15:42:43 +00:00
|
|
|
void DidRedirectNavigation(
|
|
|
|
content::NavigationHandle* navigation_handle) override;
|
2021-05-19 09:27:35 +00:00
|
|
|
void ReadyToCommitNavigation(
|
|
|
|
content::NavigationHandle* navigation_handle) override;
|
2016-07-14 00:19:28 +00:00
|
|
|
void DidFinishNavigation(
|
|
|
|
content::NavigationHandle* navigation_handle) override;
|
2014-12-09 22:38:43 +00:00
|
|
|
void WebContentsDestroyed() override;
|
2015-03-05 14:39:27 +00:00
|
|
|
void NavigationEntryCommitted(
|
|
|
|
const content::LoadCommittedDetails& load_details) override;
|
2017-12-18 00:19:21 +00:00
|
|
|
void TitleWasSet(content::NavigationEntry* entry) override;
|
2015-04-17 19:55:31 +00:00
|
|
|
void DidUpdateFaviconURL(
|
2020-06-22 17:35:10 +00:00
|
|
|
content::RenderFrameHost* render_frame_host,
|
2020-03-03 21:35:05 +00:00
|
|
|
const std::vector<blink::mojom::FaviconURLPtr>& urls) override;
|
2015-05-12 19:35:56 +00:00
|
|
|
void PluginCrashed(const base::FilePath& plugin_path,
|
|
|
|
base::ProcessId plugin_pid) override;
|
2017-01-23 09:59:40 +00:00
|
|
|
void MediaStartedPlaying(const MediaPlayerInfo& video_type,
|
2019-04-20 17:20:37 +00:00
|
|
|
const content::MediaPlayerId& id) override;
|
2018-04-11 15:27:14 +00:00
|
|
|
void MediaStoppedPlaying(
|
|
|
|
const MediaPlayerInfo& video_type,
|
2019-04-20 17:20:37 +00:00
|
|
|
const content::MediaPlayerId& id,
|
2018-04-11 15:27:14 +00:00
|
|
|
content::WebContentsObserver::MediaStoppedReason reason) override;
|
2020-01-17 18:41:52 +00:00
|
|
|
void DidChangeThemeColor() override;
|
2023-02-03 11:43:42 +00:00
|
|
|
void OnCursorChanged(const ui::Cursor& cursor) override;
|
2019-06-13 21:02:56 +00:00
|
|
|
void DidAcquireFullscreen(content::RenderFrameHost* rfh) override;
|
2022-02-01 10:28:57 +00:00
|
|
|
void OnWebContentsFocused(
|
|
|
|
content::RenderWidgetHost* render_widget_host) override;
|
|
|
|
void OnWebContentsLostFocus(
|
|
|
|
content::RenderWidgetHost* render_widget_host) override;
|
2014-04-24 08:45:25 +00:00
|
|
|
|
2018-10-19 13:50:30 +00:00
|
|
|
// InspectableWebContentsDelegate:
|
2016-04-12 07:36:12 +00:00
|
|
|
void DevToolsReloadPage() override;
|
|
|
|
|
2018-10-19 13:50:30 +00:00
|
|
|
// InspectableWebContentsViewDelegate:
|
2015-10-01 03:14:19 +00:00
|
|
|
void DevToolsFocused() override;
|
|
|
|
void DevToolsOpened() override;
|
|
|
|
void DevToolsClosed() override;
|
2020-11-09 21:54:04 +00:00
|
|
|
void DevToolsResized() override;
|
2017-09-12 23:25:18 +00:00
|
|
|
|
2015-07-14 19:13:25 +00:00
|
|
|
ElectronBrowserContext* GetBrowserContext() const;
|
|
|
|
|
2019-04-03 21:22:23 +00:00
|
|
|
void OnElectronBrowserConnectionError();
|
2019-04-02 22:38:16 +00:00
|
|
|
|
2020-11-10 17:06:56 +00:00
|
|
|
OffScreenWebContentsView* GetOffScreenWebContentsView() const;
|
2018-11-30 05:25:02 +00:00
|
|
|
OffScreenRenderWidgetHostView* GetOffScreenRenderWidgetHostView() const;
|
2018-03-20 01:25:51 +00:00
|
|
|
|
2017-01-30 17:06:50 +00:00
|
|
|
// Called when received a synchronous message from renderer to
|
|
|
|
// get the zoom level.
|
2018-03-09 09:31:09 +00:00
|
|
|
void OnGetZoomLevel(content::RenderFrameHost* frame_host,
|
|
|
|
IPC::Message* reply_msg);
|
2017-01-30 17:06:50 +00:00
|
|
|
|
2017-10-21 20:21:24 +00:00
|
|
|
void InitZoomController(content::WebContents* web_contents,
|
2019-10-25 13:03:28 +00:00
|
|
|
const gin_helper::Dictionary& options);
|
2017-10-21 20:21:24 +00:00
|
|
|
|
2020-11-10 17:06:56 +00:00
|
|
|
// content::WebContentsDelegate:
|
|
|
|
bool CanOverscrollContent() override;
|
2021-01-21 21:02:29 +00:00
|
|
|
std::unique_ptr<content::EyeDropper> OpenEyeDropper(
|
|
|
|
content::RenderFrameHost* frame,
|
|
|
|
content::EyeDropperListener* listener) override;
|
2020-11-10 17:06:56 +00:00
|
|
|
void RunFileChooser(content::RenderFrameHost* render_frame_host,
|
|
|
|
scoped_refptr<content::FileSelectListener> listener,
|
|
|
|
const blink::mojom::FileChooserParams& params) override;
|
|
|
|
void EnumerateDirectory(content::WebContents* web_contents,
|
|
|
|
scoped_refptr<content::FileSelectListener> listener,
|
|
|
|
const base::FilePath& path) override;
|
2021-10-28 14:23:05 +00:00
|
|
|
|
|
|
|
// ExclusiveAccessContext:
|
|
|
|
Profile* GetProfile() override;
|
|
|
|
bool IsFullscreen() const override;
|
|
|
|
void EnterFullscreen(const GURL& url,
|
|
|
|
ExclusiveAccessBubbleType bubble_type,
|
|
|
|
const int64_t display_id) override;
|
|
|
|
void ExitFullscreen() override;
|
|
|
|
void UpdateExclusiveAccessExitBubbleContent(
|
|
|
|
const GURL& url,
|
|
|
|
ExclusiveAccessBubbleType bubble_type,
|
|
|
|
ExclusiveAccessBubbleHideCallback bubble_first_hide_callback,
|
2022-09-07 07:46:37 +00:00
|
|
|
bool notify_download,
|
2021-10-28 14:23:05 +00:00
|
|
|
bool force_update) override;
|
|
|
|
void OnExclusiveAccessUserInput() override;
|
|
|
|
content::WebContents* GetActiveWebContents() override;
|
|
|
|
bool CanUserExitFullscreen() const override;
|
|
|
|
bool IsExclusiveAccessBubbleDisplayed() const override;
|
|
|
|
|
2023-05-01 13:23:47 +00:00
|
|
|
// content::WebContentsDelegate
|
2020-11-10 17:06:56 +00:00
|
|
|
bool IsFullscreenForTabOrPending(const content::WebContents* source) override;
|
2023-05-03 13:55:47 +00:00
|
|
|
content::FullscreenState GetFullscreenState(
|
|
|
|
const content::WebContents* web_contents) const override;
|
2020-11-10 17:06:56 +00:00
|
|
|
bool TakeFocus(content::WebContents* source, bool reverse) override;
|
|
|
|
content::PictureInPictureResult EnterPictureInPicture(
|
2022-02-25 18:17:35 +00:00
|
|
|
content::WebContents* web_contents) override;
|
2020-11-10 17:06:56 +00:00
|
|
|
void ExitPictureInPicture() override;
|
|
|
|
|
|
|
|
// InspectableWebContentsDelegate:
|
|
|
|
void DevToolsSaveToFile(const std::string& url,
|
|
|
|
const std::string& content,
|
|
|
|
bool save_as) override;
|
|
|
|
void DevToolsAppendToFile(const std::string& url,
|
|
|
|
const std::string& content) override;
|
|
|
|
void DevToolsRequestFileSystems() override;
|
|
|
|
void DevToolsAddFileSystem(const std::string& type,
|
|
|
|
const base::FilePath& file_system_path) override;
|
|
|
|
void DevToolsRemoveFileSystem(
|
|
|
|
const base::FilePath& file_system_path) override;
|
|
|
|
void DevToolsIndexPath(int request_id,
|
|
|
|
const std::string& file_system_path,
|
|
|
|
const std::string& excluded_folders_message) override;
|
2023-01-26 08:54:26 +00:00
|
|
|
void DevToolsOpenInNewTab(const std::string& url) override;
|
2020-11-10 17:06:56 +00:00
|
|
|
void DevToolsStopIndexing(int request_id) override;
|
|
|
|
void DevToolsSearchInPath(int request_id,
|
|
|
|
const std::string& file_system_path,
|
|
|
|
const std::string& query) override;
|
2021-06-17 13:42:51 +00:00
|
|
|
void DevToolsSetEyeDropperActive(bool active) override;
|
2020-11-10 17:06:56 +00:00
|
|
|
|
|
|
|
// InspectableWebContentsViewDelegate:
|
2022-02-10 02:58:52 +00:00
|
|
|
#if defined(TOOLKIT_VIEWS) && !BUILDFLAG(IS_MAC)
|
2021-06-08 20:22:43 +00:00
|
|
|
ui::ImageModel GetDevToolsWindowIcon() override;
|
2020-11-10 17:06:56 +00:00
|
|
|
#endif
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_LINUX)
|
2020-11-10 17:06:56 +00:00
|
|
|
void GetDevToolsWindowWMClass(std::string* name,
|
|
|
|
std::string* class_name) override;
|
|
|
|
#endif
|
|
|
|
|
2021-06-17 13:42:51 +00:00
|
|
|
void ColorPickedInEyeDropper(int r, int g, int b, int a);
|
|
|
|
|
2020-11-10 17:06:56 +00:00
|
|
|
// DevTools index event callbacks.
|
|
|
|
void OnDevToolsIndexingWorkCalculated(int request_id,
|
|
|
|
const std::string& file_system_path,
|
|
|
|
int total_work);
|
|
|
|
void OnDevToolsIndexingWorked(int request_id,
|
|
|
|
const std::string& file_system_path,
|
|
|
|
int worked);
|
|
|
|
void OnDevToolsIndexingDone(int request_id,
|
|
|
|
const std::string& file_system_path);
|
|
|
|
void OnDevToolsSearchCompleted(int request_id,
|
|
|
|
const std::string& file_system_path,
|
|
|
|
const std::vector<std::string>& file_paths);
|
|
|
|
|
|
|
|
// Set fullscreen mode triggered by html api.
|
|
|
|
void SetHtmlApiFullscreen(bool enter_fullscreen);
|
2021-07-02 00:56:29 +00:00
|
|
|
// Update the html fullscreen flag in both browser and renderer.
|
|
|
|
void UpdateHtmlApiFullscreen(bool fullscreen);
|
2020-11-10 17:06:56 +00:00
|
|
|
|
2015-06-16 09:23:29 +00:00
|
|
|
v8::Global<v8::Value> session_;
|
2015-10-01 03:14:19 +00:00
|
|
|
v8::Global<v8::Value> devtools_web_contents_;
|
2016-01-21 18:22:23 +00:00
|
|
|
v8::Global<v8::Value> debugger_;
|
2015-06-16 09:23:29 +00:00
|
|
|
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<WebViewGuestDelegate> guest_delegate_;
|
2018-04-18 00:45:15 +00:00
|
|
|
std::unique_ptr<FrameSubscriber> frame_subscriber_;
|
|
|
|
|
2020-01-15 23:11:51 +00:00
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
std::unique_ptr<extensions::ScriptExecutor> script_executor_;
|
|
|
|
#endif
|
|
|
|
|
2016-02-17 08:52:19 +00:00
|
|
|
// The host webcontents that may contain this webcontents.
|
2023-05-11 20:07:39 +00:00
|
|
|
RAW_PTR_EXCLUSION WebContents* embedder_ = nullptr;
|
2016-02-17 08:52:19 +00:00
|
|
|
|
2021-03-15 22:43:25 +00:00
|
|
|
// Whether the guest view has been attached.
|
|
|
|
bool attached_ = false;
|
|
|
|
|
2015-06-24 13:44:27 +00:00
|
|
|
// The type of current WebContents.
|
2020-10-27 17:51:45 +00:00
|
|
|
Type type_ = Type::kBrowserWindow;
|
2015-06-24 13:44:27 +00:00
|
|
|
|
2024-01-05 04:00:27 +00:00
|
|
|
// Weather the guest view should be transparent
|
|
|
|
bool guest_transparent_ = true;
|
|
|
|
|
2020-07-30 16:17:57 +00:00
|
|
|
int32_t id_;
|
|
|
|
|
2015-12-17 23:10:42 +00:00
|
|
|
// Request id used for findInPage request.
|
2020-11-17 22:15:07 +00:00
|
|
|
uint32_t find_in_page_request_id_ = 0;
|
2015-12-17 23:10:42 +00:00
|
|
|
|
2016-04-08 06:54:33 +00:00
|
|
|
// Whether background throttling is disabled.
|
2018-05-21 22:18:38 +00:00
|
|
|
bool background_throttling_ = true;
|
2016-04-08 06:54:33 +00:00
|
|
|
|
2016-09-07 02:16:52 +00:00
|
|
|
// Whether to enable devtools.
|
2018-05-21 22:18:38 +00:00
|
|
|
bool enable_devtools_ = true;
|
2016-09-05 08:27:56 +00:00
|
|
|
|
2018-02-22 06:57:03 +00:00
|
|
|
// Observers of this WebContents.
|
|
|
|
base::ObserverList<ExtendedWebContentsObserver> observers_;
|
|
|
|
|
2020-11-10 17:06:03 +00:00
|
|
|
v8::Global<v8::Value> pending_child_web_preferences_;
|
|
|
|
|
2020-11-10 17:06:56 +00:00
|
|
|
// The window that this WebContents belongs to.
|
|
|
|
base::WeakPtr<NativeWindow> owner_window_;
|
|
|
|
|
|
|
|
bool offscreen_ = false;
|
|
|
|
|
|
|
|
// Whether window is fullscreened by HTML5 api.
|
|
|
|
bool html_fullscreen_ = false;
|
|
|
|
|
|
|
|
// Whether window is fullscreened by window api.
|
|
|
|
bool native_fullscreen_ = false;
|
|
|
|
|
2023-06-09 20:28:11 +00:00
|
|
|
const scoped_refptr<DevToolsFileSystemIndexer> devtools_file_system_indexer_ =
|
|
|
|
base::MakeRefCounted<DevToolsFileSystemIndexer>();
|
2020-11-10 17:06:56 +00:00
|
|
|
|
2023-06-09 20:28:11 +00:00
|
|
|
ExclusiveAccessManager exclusive_access_manager_{this};
|
2021-10-28 14:23:05 +00:00
|
|
|
|
2021-06-17 13:42:51 +00:00
|
|
|
std::unique_ptr<DevToolsEyeDropper> eye_dropper_;
|
|
|
|
|
2023-05-11 20:07:39 +00:00
|
|
|
raw_ptr<ElectronBrowserContext> browser_context_;
|
2020-11-10 17:06:56 +00:00
|
|
|
|
|
|
|
// The stored InspectableWebContents object.
|
2020-11-17 22:15:20 +00:00
|
|
|
// Notice that inspectable_web_contents_ must be placed after
|
|
|
|
// dialog_manager_, so we can make sure inspectable_web_contents_ is
|
|
|
|
// destroyed before dialog_manager_, otherwise a crash would happen.
|
|
|
|
std::unique_ptr<InspectableWebContents> inspectable_web_contents_;
|
2020-11-10 17:06:56 +00:00
|
|
|
|
2023-05-24 01:52:07 +00:00
|
|
|
// The zoom controller for this webContents.
|
|
|
|
// Note: owned by inspectable_web_contents_, so declare this *after*
|
|
|
|
// that field to ensure the dtor destroys them in the right order.
|
|
|
|
raw_ptr<WebContentsZoomController> zoom_controller_ = nullptr;
|
|
|
|
|
2020-11-10 17:06:56 +00:00
|
|
|
// Maps url to file path, used by the file requests sent from devtools.
|
|
|
|
typedef std::map<std::string, base::FilePath> PathsMap;
|
|
|
|
PathsMap saved_files_;
|
|
|
|
|
|
|
|
// Map id to index job, used for file system indexing requests from devtools.
|
|
|
|
typedef std::
|
|
|
|
map<int, scoped_refptr<DevToolsFileSystemIndexer::FileSystemIndexingJob>>
|
|
|
|
DevToolsIndexingJobsMap;
|
|
|
|
DevToolsIndexingJobsMap devtools_indexing_jobs_;
|
|
|
|
|
2023-06-09 20:28:11 +00:00
|
|
|
const scoped_refptr<base::SequencedTaskRunner> file_task_runner_ =
|
|
|
|
base::ThreadPool::CreateSequencedTaskRunner({base::MayBlock()});
|
2021-01-25 16:27:25 +00:00
|
|
|
|
|
|
|
#if BUILDFLAG(ENABLE_PRINTING)
|
2023-06-09 20:28:11 +00:00
|
|
|
const scoped_refptr<base::TaskRunner> print_task_runner_;
|
2021-01-25 16:27:25 +00:00
|
|
|
#endif
|
2020-11-10 17:06:56 +00:00
|
|
|
|
|
|
|
// Stores the frame thats currently in fullscreen, nullptr if there is none.
|
2023-05-11 20:07:39 +00:00
|
|
|
raw_ptr<content::RenderFrameHost> fullscreen_frame_ = nullptr;
|
2020-11-10 17:06:56 +00:00
|
|
|
|
2022-11-07 18:15:57 +00:00
|
|
|
std::unique_ptr<SkRegion> draggable_region_;
|
|
|
|
|
2023-02-24 00:05:30 +00:00
|
|
|
bool force_non_draggable_ = false;
|
|
|
|
|
2021-01-26 18:16:21 +00:00
|
|
|
base::WeakPtrFactory<WebContents> weak_factory_{this};
|
2014-04-24 08:45:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_API_ELECTRON_API_WEB_CONTENTS_H_
|