electron/atom/browser/api/atom_api_web_contents.h

413 lines
15 KiB
C
Raw Normal View History

// 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.
#ifndef ATOM_BROWSER_API_ATOM_API_WEB_CONTENTS_H_
#define ATOM_BROWSER_API_ATOM_API_WEB_CONTENTS_H_
2014-10-24 12:57:44 +00:00
#include <string>
#include <vector>
2014-10-24 12:57:44 +00:00
#include "atom/browser/api/frame_subscriber.h"
2015-10-14 04:41:31 +00:00
#include "atom/browser/api/save_page_handler.h"
2015-06-24 06:36:05 +00:00
#include "atom/browser/api/trackable_object.h"
2015-06-05 05:49:12 +00:00
#include "atom/browser/common_web_contents_delegate.h"
2017-05-19 19:35:13 +00:00
#include "atom/browser/ui/autofill_popup.h"
2016-08-26 22:30:02 +00:00
#include "content/common/cursors/webcursor.h"
2014-04-25 03:22:51 +00:00
#include "content/public/browser/web_contents_observer.h"
#include "content/public/common/favicon_url.h"
2014-04-24 08:45:25 +00:00
#include "native_mate/handle.h"
#include "printing/backend/print_backend.h"
#include "ui/gfx/image/image.h"
2014-04-24 08:45:25 +00:00
namespace blink {
struct WebDeviceEmulationParams;
}
2014-11-02 15:32:33 +00:00
namespace brightray {
2014-11-03 11:45:09 +00:00
class InspectableWebContents;
2014-11-02 14:34:22 +00:00
}
namespace content {
class ResourceRequestBodyImpl;
}
namespace mate {
2015-06-05 09:01:17 +00:00
class Arguments;
class Dictionary;
}
2014-04-24 08:45:25 +00:00
namespace atom {
struct SetSizeParams;
2015-07-14 19:13:25 +00:00
class AtomBrowserContext;
2017-04-28 00:28:48 +00:00
class AtomJavaScriptDialogManager;
class WebContentsZoomController;
class WebViewGuestDelegate;
2014-04-24 08:45:25 +00:00
namespace api {
2015-06-24 09:58:12 +00:00
class WebContents : public mate::TrackableObject<WebContents>,
2015-06-05 05:49:12 +00:00
public CommonWebContentsDelegate,
public content::WebContentsObserver {
2014-04-24 08:45:25 +00:00
public:
enum Type {
2016-06-14 16:32:59 +00:00
BACKGROUND_PAGE, // A DevTools extension background page.
Implement initial, experimental BrowserView API Right now, `<webview>` is the only way to embed additional content in a `BrowserWindow`. Unfortunately `<webview>` suffers from a [number of problems](https://github.com/electron/electron/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aopen%20label%3Awebview%20). To make matters worse, many of these are upstream Chromium bugs instead of Electron-specific bugs. For us at [Figma](https://www.figma.com), the main issue is very slow performance. Despite the upstream improvements to `<webview>` through the OOPIF work, it is probable that there will continue to be `<webview>`-specific bugs in the future. Therefore, this introduces a `<webview>` alternative to called `BrowserView`, which... - is a thin wrapper around `api::WebContents` (so bugs in `BrowserView` will likely also be bugs in `BrowserWindow` web contents) - is instantiated in the main process like `BrowserWindow` (and unlike `<webview>`, which lives in the DOM of a `BrowserWindow` web contents) - needs to be added to a `BrowserWindow` to display something on the screen This implements the most basic API. The API is expected to evolve and change in the near future and has consequently been marked as experimental. Please do not use this API in production unless you are prepared to deal with breaking changes. In the future, we will want to change the API to support multiple `BrowserView`s per window. We will also want to consider z-ordering auto-resizing, and possibly even nested views.
2017-04-11 17:47:30 +00:00
BROWSER_WINDOW, // Used by BrowserWindow.
BROWSER_VIEW, // Used by BrowserView.
REMOTE, // Thin wrap around an existing WebContents.
WEB_VIEW, // Used by <webview>.
OFF_SCREEN, // Used for offscreen rendering
};
2015-06-10 12:07:14 +00:00
// For node.js callback function type: function(error, buffer)
using PrintToPDFCallback =
base::Callback<void(v8::Local<v8::Value>, v8::Local<v8::Value>)>;
2015-06-10 03:34:16 +00:00
// Create from an existing WebContents.
static mate::Handle<WebContents> CreateFrom(
v8::Isolate* isolate, content::WebContents* web_contents);
static mate::Handle<WebContents> CreateFrom(
v8::Isolate* isolate, content::WebContents* web_contents, Type type);
// Create a new WebContents.
static mate::Handle<WebContents> Create(
v8::Isolate* isolate, const mate::Dictionary& options);
2014-04-24 08:45:25 +00:00
2016-04-25 01:17:54 +00:00
static void BuildPrototype(v8::Isolate* isolate,
v8::Local<v8::FunctionTemplate> prototype);
2016-04-25 01:17:54 +00:00
// Notifies to destroy any guest web contents before destroying self.
void DestroyWebContents(bool async);
int64_t GetID() const;
int GetProcessID() const;
2017-05-15 20:29:34 +00:00
base::ProcessId GetOSProcessID() const;
Type GetType() const;
2015-06-23 08:16:10 +00:00
bool Equal(const WebContents* web_contents) const;
void LoadURL(const GURL& url, const mate::Dictionary& options);
void DownloadURL(const GURL& url);
GURL GetURL() const;
2014-06-28 11:36:57 +00:00
base::string16 GetTitle() const;
bool IsLoading() const;
bool IsLoadingMainFrame() const;
bool IsWaitingForResponse() const;
void Stop();
2015-04-26 13:28:30 +00:00
void ReloadIgnoringCache();
void GoBack();
void GoForward();
2015-05-11 08:44:01 +00:00
void GoToOffset(int offset);
2017-03-09 03:06:26 +00:00
const std::string GetWebRTCIPHandlingPolicy() const;
void SetWebRTCIPHandlingPolicy(const std::string& webrtc_ip_handling_policy);
bool IsCrashed() const;
void SetUserAgent(const std::string& user_agent, mate::Arguments* args);
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);
2015-10-14 04:41:31 +00:00
bool SavePage(const base::FilePath& full_file_path,
const content::SavePageType& save_type,
const SavePageHandler::SavePageCallback& callback);
2015-06-05 09:01:17 +00:00
void OpenDevTools(mate::Arguments* args);
void CloseDevTools();
bool IsDevToolsOpened();
bool IsDevToolsFocused();
2015-06-05 09:01:17 +00:00
void ToggleDevTools();
void EnableDeviceEmulation(const blink::WebDeviceEmulationParams& 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);
void InspectServiceWorker();
void HasServiceWorker(const base::Callback<void(bool)>&);
void UnregisterServiceWorker(const base::Callback<void(bool)>&);
2015-06-15 13:40:49 +00:00
void SetAudioMuted(bool muted);
bool IsAudioMuted();
void Print(mate::Arguments* args);
2017-05-18 17:26:22 +00:00
std::vector<printing::PrinterBasicInfo> GetPrinterList();
void SetEmbedder(const WebContents* embedder);
2015-01-19 20:09:47 +00:00
// Print current page as PDF.
2015-06-10 03:34:16 +00:00
void PrintToPDF(const base::DictionaryValue& setting,
2015-06-13 08:02:16 +00:00
const PrintToPDFCallback& callback);
// DevTools workspace api.
2015-09-07 08:12:31 +00:00
void AddWorkSpace(mate::Arguments* args, const base::FilePath& path);
void RemoveWorkSpace(mate::Arguments* args, const base::FilePath& path);
2015-01-19 20:09:47 +00:00
// Editing commands.
void Undo();
void Redo();
void Cut();
void Copy();
void Paste();
void PasteAndMatchStyle();
2015-01-19 20:09:47 +00:00
void Delete();
void SelectAll();
void Unselect();
void Replace(const base::string16& word);
void ReplaceMisspelling(const base::string16& word);
2016-03-08 04:40:10 +00:00
uint32_t FindInPage(mate::Arguments* args);
2015-12-17 17:27:56 +00:00
void StopFindInPage(content::StopFindAction action);
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();
bool IsFocused() const;
2015-07-24 04:58:28 +00:00
void TabTraverse(bool reverse);
2015-09-18 06:20:31 +00:00
// Send messages to browser.
bool SendIPCMessage(bool all_frames,
const base::string16& channel,
2014-06-28 11:36:57 +00:00
const base::ListValue& args);
2015-09-18 06:20:31 +00:00
// Send WebInputEvent to the page.
void SendInputEvent(v8::Isolate* isolate, v8::Local<v8::Value> input_event);
// Subscribe to the frame updates.
void BeginFrameSubscription(mate::Arguments* args);
void EndFrameSubscription();
2016-07-03 03:26:43 +00:00
// Dragging native items.
2016-07-03 04:58:31 +00:00
void StartDrag(const mate::Dictionary& item, mate::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.
void CapturePage(mate::Arguments* args);
// Methods for creating <webview>.
void SetSize(const SetSizeParams& params);
2015-06-05 07:18:15 +00:00
bool IsGuest() const;
2016-07-29 12:50:27 +00:00
// Methods for offscreen rendering
bool IsOffScreen() const;
bool IsOffScreenOrEmbedderOffscreen() const;
2016-08-04 04:22:19 +00:00
void OnPaint(const gfx::Rect& dirty_rect, const SkBitmap& bitmap);
void StartPainting();
void StopPainting();
bool IsPainting() const;
2016-07-31 10:19:56 +00:00
void SetFrameRate(int frame_rate);
int GetFrameRate() const;
void Invalidate();
2017-05-11 21:48:14 +00:00
gfx::Size GetSizeForNewRenderView(content::WebContents*) const override;
2014-10-24 08:09:18 +00:00
// Methods for zoom handling.
void SetZoomLevel(double level);
double GetZoomLevel();
void SetZoomFactor(double factor);
double GetZoomFactor();
2016-02-01 10:03:38 +00:00
// Callback triggered on permission response.
void OnEnterFullscreenModeForTab(content::WebContents* source,
const GURL& origin,
bool allowed);
// Create window with the given disposition.
void OnCreateWindow(
const GURL& target_url,
const std::string& frame_name,
WindowOpenDisposition disposition,
const std::vector<std::string>& features,
const scoped_refptr<content::ResourceRequestBodyImpl>& body);
// Returns the web preferences of current WebContents.
v8::Local<v8::Value> GetWebPreferences(v8::Isolate* isolate);
2015-10-01 05:45:59 +00:00
// Returns the owner window.
v8::Local<v8::Value> GetOwnerBrowserWindow();
2015-10-01 03:14:19 +00:00
// Properties.
2016-05-17 12:56:47 +00:00
int32_t ID() const;
2015-10-01 03:14:19 +00:00
v8::Local<v8::Value> Session(v8::Isolate* isolate);
content::WebContents* HostWebContents();
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);
2015-10-01 03:14:19 +00:00
WebContentsZoomController* GetZoomController() { return zoom_controller_; }
2014-04-24 08:45:25 +00:00
protected:
WebContents(v8::Isolate* isolate,
content::WebContents* web_contents,
Type type);
2015-09-04 16:44:22 +00:00
WebContents(v8::Isolate* isolate, const mate::Dictionary& options);
~WebContents();
2014-04-24 08:45:25 +00:00
void InitWithSessionAndOptions(v8::Isolate* isolate,
content::WebContents *web_contents,
mate::Handle<class Session> session,
const mate::Dictionary& options);
2014-10-24 10:06:32 +00:00
// content::WebContentsDelegate:
2017-01-23 09:59:40 +00:00
bool DidAddMessageToConsole(content::WebContents* source,
int32_t level,
const base::string16& message,
int32_t line_no,
const base::string16& source_id) override;
void WebContentsCreated(content::WebContents* source_contents,
2017-01-23 09:59:40 +00:00
int opener_render_process_id,
int opener_render_frame_id,
const std::string& frame_name,
const GURL& target_url,
content::WebContents* new_contents) override;
void AddNewContents(content::WebContents* source,
content::WebContents* new_contents,
WindowOpenDisposition disposition,
const gfx::Rect& initial_rect,
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;
void BeforeUnloadFired(content::WebContents* tab,
bool proceed,
bool* proceed_to_fire_unload) override;
void MoveContents(content::WebContents* source,
const gfx::Rect& pos) override;
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;
2015-06-24 14:23:38 +00:00
bool IsPopupOrPanel(const content::WebContents* source) const override;
2014-10-24 13:46:47 +00:00
void HandleKeyboardEvent(
content::WebContents* source,
const content::NativeWebKeyboardEvent& event) override;
bool PreHandleKeyboardEvent(content::WebContents* source,
const content::NativeWebKeyboardEvent& event,
bool* is_keyboard_shortcut) override;
void EnterFullscreenModeForTab(content::WebContents* source,
const GURL& origin) override;
void ExitFullscreenModeForTab(content::WebContents* source) override;
2017-01-23 09:59:40 +00:00
void RendererUnresponsive(
content::WebContents* source,
const content::WebContentsUnresponsiveState& unresponsive_state) override;
void RendererResponsive(content::WebContents* source) override;
2015-10-31 13:39:07 +00:00
bool HandleContextMenu(const content::ContextMenuParams& params) override;
bool OnGoToEntryOffset(int offset) 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;
bool CheckMediaAccessPermission(
content::WebContents* web_contents,
const GURL& security_origin,
content::MediaStreamType type) override;
2016-01-23 13:29:47 +00:00
void RequestMediaAccessPermission(
content::WebContents* web_contents,
const content::MediaStreamRequest& request,
const content::MediaResponseCallback& callback) override;
2016-02-01 09:43:49 +00:00
void RequestToLockMouse(
content::WebContents* web_contents,
bool user_gesture,
bool last_unlocked_by_target) override;
std::unique_ptr<content::BluetoothChooser> RunBluetoothChooser(
content::RenderFrameHost* frame,
const content::BluetoothChooser::EventHandler& handler) override;
2017-04-28 00:28:48 +00:00
content::JavaScriptDialogManager* GetJavaScriptDialogManager(
content::WebContents* source) override;
2014-10-24 10:06:32 +00:00
// content::WebContentsObserver:
void BeforeUnloadFired(const base::TimeTicks& proceed_time) override;
void RenderViewCreated(content::RenderViewHost*) override;
void RenderViewDeleted(content::RenderViewHost*) override;
void RenderProcessGone(base::TerminationStatus status) override;
2015-04-29 13:49:31 +00:00
void DocumentLoadedInFrame(
content::RenderFrameHost* render_frame_host) override;
void DidFinishLoad(content::RenderFrameHost* render_frame_host,
const GURL& validated_url) override;
void DidFailLoad(content::RenderFrameHost* render_frame_host,
const GURL& validated_url,
int error_code,
2015-09-02 07:16:49 +00:00
const base::string16& error_description,
bool was_ignored_by_handler) override;
2015-05-22 07:24:34 +00:00
void DidStartLoading() override;
void DidStopLoading() override;
void DidGetResourceResponseStart(
const content::ResourceRequestDetails& details) override;
void DidGetRedirectForResourceRequest(
2014-10-24 15:05:25 +00:00
const content::ResourceRedirectDetails& details) override;
void DidFinishNavigation(
content::NavigationHandle* navigation_handle) override;
bool OnMessageReceived(const IPC::Message& message) override;
bool OnMessageReceived(const IPC::Message& message,
content::RenderFrameHost* frame_host) override;
void WebContentsDestroyed() override;
void NavigationEntryCommitted(
const content::LoadCommittedDetails& load_details) override;
2015-04-05 09:20:42 +00:00
void TitleWasSet(content::NavigationEntry* entry, bool explicit_set) override;
void DidUpdateFaviconURL(
const std::vector<content::FaviconURL>& urls) override;
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,
const MediaPlayerId& id) override;
void MediaStoppedPlaying(const MediaPlayerInfo& video_type,
const MediaPlayerId& id) override;
void DidChangeThemeColor(SkColor theme_color) override;
2014-04-24 08:45:25 +00:00
// brightray::InspectableWebContentsDelegate:
void DevToolsReloadPage() override;
2015-10-01 03:14:19 +00:00
// brightray::InspectableWebContentsViewDelegate:
void DevToolsFocused() override;
void DevToolsOpened() override;
void DevToolsClosed() override;
2014-04-24 08:45:25 +00:00
private:
2015-07-14 19:13:25 +00:00
AtomBrowserContext* GetBrowserContext() const;
2016-03-08 04:40:10 +00:00
uint32_t GetNextRequestId() {
2015-12-17 23:10:42 +00:00
return ++request_id_;
}
// Called when we receive a CursorChange message from chromium.
void OnCursorChange(const content::WebCursor& cursor);
2017-05-19 19:52:18 +00:00
// Called when received a message from renderer.
2014-06-28 11:36:57 +00:00
void OnRendererMessage(const base::string16& channel,
const base::ListValue& args);
// Called when received a synchronous message from renderer.
2014-06-28 11:36:57 +00:00
void OnRendererMessageSync(const base::string16& channel,
const base::ListValue& args,
IPC::Message* message);
// Called when received a synchronous message from renderer to
// set temporary zoom level.
void OnSetTemporaryZoomLevel(double level, IPC::Message* reply_msg);
// Called when received a synchronous message from renderer to
// get the zoom level.
void OnGetZoomLevel(IPC::Message* reply_msg);
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_;
2017-04-28 00:28:48 +00:00
std::unique_ptr<AtomJavaScriptDialogManager> dialog_manager_;
2016-05-23 01:59:39 +00:00
std::unique_ptr<WebViewGuestDelegate> guest_delegate_;
// The host webcontents that may contain this webcontents.
WebContents* embedder_;
// The zoom controller for this webContents.
WebContentsZoomController* zoom_controller_;
2015-06-24 13:44:27 +00:00
// The type of current WebContents.
Type type_;
2015-12-17 23:10:42 +00:00
// Request id used for findInPage request.
2016-03-08 04:40:10 +00:00
uint32_t request_id_;
2015-12-17 23:10:42 +00:00
// Whether background throttling is disabled.
bool background_throttling_;
2016-09-07 02:16:52 +00:00
// Whether to enable devtools.
bool enable_devtools_;
2016-09-05 08:27:56 +00:00
2014-04-24 08:45:25 +00:00
DISALLOW_COPY_AND_ASSIGN(WebContents);
};
} // namespace api
} // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_WEB_CONTENTS_H_