blob: 6973aebe5453b1dfffe4e02301fbc7779ba4d108 [file] [log] [blame]
// Copyright 2013 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 CONTENT_SHELL_BROWSER_SHELL_H_
#define CONTENT_SHELL_BROWSER_SHELL_H_
#include <stdint.h>
#include <memory>
#include <vector>
#include "base/callback_forward.h"
#include "base/memory/ref_counted.h"
#include "base/strings/string_piece.h"
#include "build/build_config.h"
#include "content/public/browser/web_contents_delegate.h"
#include "content/public/browser/web_contents_observer.h"
#include "ipc/ipc_channel.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/native_widget_types.h"
#if defined(OS_ANDROID)
#include "base/android/scoped_java_ref.h"
#elif defined(USE_AURA)
#if defined(OS_CHROMEOS)
namespace display {
class Screen;
}
namespace wm {
class WMTestHelper;
}
#endif // defined(OS_CHROMEOS)
namespace views {
class Widget;
class ViewsDelegate;
}
namespace wm {
class WMState;
}
#endif // defined(USE_AURA)
class GURL;
namespace content {
#if defined(USE_AURA)
class ShellPlatformDataAura;
#endif
class BrowserContext;
class ShellDevToolsFrontend;
class ShellJavaScriptDialogManager;
class SiteInstance;
class WebContents;
// This represents one window of the Content Shell, i.e. all the UI including
// buttons and url bar, as well as the web content area.
class Shell : public WebContentsDelegate,
public WebContentsObserver {
public:
~Shell() override;
void LoadURL(const GURL& url);
void LoadURLForFrame(const GURL& url,
const std::string& frame_name,
ui::PageTransition);
void LoadDataWithBaseURL(const GURL& url,
const std::string& data,
const GURL& base_url);
#if defined(OS_ANDROID)
// Android-only path to allow loading long data strings.
void LoadDataAsStringWithBaseURL(const GURL& url,
const std::string& data,
const GURL& base_url);
#endif
void GoBackOrForward(int offset);
void Reload();
void ReloadBypassingCache();
void Stop();
void UpdateNavigationControls(bool to_different_document);
void Close();
void ShowDevTools();
void CloseDevTools();
bool hide_toolbar() { return hide_toolbar_; }
#if defined(OS_MACOSX) || defined(OS_ANDROID)
// Resizes the web content view to the given dimensions.
void SizeTo(const gfx::Size& content_size);
#endif
// Do one time initialization at application startup.
static void Initialize();
static Shell* CreateNewWindow(
BrowserContext* browser_context,
const GURL& url,
const scoped_refptr<SiteInstance>& site_instance,
const gfx::Size& initial_size);
// Returns the Shell object corresponding to the given RenderViewHost.
static Shell* FromRenderViewHost(RenderViewHost* rvh);
// Returns the currently open windows.
static std::vector<Shell*>& windows() { return windows_; }
// Closes all windows and returns. This runs a message loop.
static void CloseAllWindows();
// Used for content_browsertests. Called once.
static void SetShellCreatedCallback(
base::Callback<void(Shell*)> shell_created_callback);
WebContents* web_contents() const { return web_contents_.get(); }
gfx::NativeWindow window() { return window_; }
#if defined(OS_MACOSX)
// Public to be called by an ObjC bridge object.
void ActionPerformed(int control);
void URLEntered(const std::string& url_string);
#endif
// WebContentsDelegate
WebContents* OpenURLFromTab(WebContents* source,
const OpenURLParams& params) override;
void AddNewContents(WebContents* source,
std::unique_ptr<WebContents> new_contents,
WindowOpenDisposition disposition,
const gfx::Rect& initial_rect,
bool user_gesture,
bool* was_blocked) override;
void LoadingStateChanged(WebContents* source,
bool to_different_document) override;
#if defined(OS_ANDROID)
void LoadProgressChanged(WebContents* source, double progress) override;
base::android::ScopedJavaLocalRef<jobject>
GetContentVideoViewEmbedder() override;
void SetOverlayMode(bool use_overlay_mode) override;
#endif
void EnterFullscreenModeForTab(
WebContents* web_contents,
const GURL& origin,
const blink::WebFullscreenOptions& options) override;
void ExitFullscreenModeForTab(WebContents* web_contents) override;
bool IsFullscreenForTabOrPending(
const WebContents* web_contents) const override;
blink::WebDisplayMode GetDisplayMode(
const WebContents* web_contents) const override;
void RequestToLockMouse(WebContents* web_contents,
bool user_gesture,
bool last_unlocked_by_target) override;
void CloseContents(WebContents* source) override;
bool CanOverscrollContent() const override;
void DidNavigateMainFramePostCommit(WebContents* web_contents) override;
JavaScriptDialogManager* GetJavaScriptDialogManager(
WebContents* source) override;
std::unique_ptr<BluetoothChooser> RunBluetoothChooser(
RenderFrameHost* frame,
const BluetoothChooser::EventHandler& event_handler) override;
#if defined(OS_MACOSX)
void HandleKeyboardEvent(WebContents* source,
const NativeWebKeyboardEvent& event) override;
#endif
bool DidAddMessageToConsole(WebContents* source,
int32_t level,
const base::string16& message,
int32_t line_no,
const base::string16& source_id) override;
void RendererUnresponsive(WebContents* source,
RenderWidgetHost* render_widget_host) override;
void ActivateContents(WebContents* contents) override;
bool ShouldAllowRunningInsecureContent(content::WebContents* web_contents,
bool allowed_per_prefs,
const url::Origin& origin,
const GURL& resource_url) override;
gfx::Size EnterPictureInPicture(const viz::SurfaceId&,
const gfx::Size& natural_size) override;
static gfx::Size GetShellDefaultSize();
private:
enum UIControl {
BACK_BUTTON,
FORWARD_BUTTON,
STOP_BUTTON
};
class DevToolsWebContentsObserver;
explicit Shell(std::unique_ptr<WebContents> web_contents);
// Helper to create a new Shell given a newly created WebContents.
static Shell* CreateShell(std::unique_ptr<WebContents> web_contents,
const gfx::Size& initial_size);
// Helper for one time initialization of application
static void PlatformInitialize(const gfx::Size& default_window_size);
// Helper for one time deinitialization of platform specific state.
static void PlatformExit();
// Adjust the size when Blink sends 0 for width and/or height.
// This happens when Blink requests a default-sized window.
static gfx::Size AdjustWindowSize(const gfx::Size& initial_size);
// All the methods that begin with Platform need to be implemented by the
// platform specific Shell implementation.
// Called from the destructor to let each platform do any necessary cleanup.
void PlatformCleanUp();
// Creates the main window GUI.
void PlatformCreateWindow(int width, int height);
// Links the WebContents into the newly created window.
void PlatformSetContents();
// Resize the content area and GUI.
void PlatformResizeSubViews();
// Enable/disable a button.
void PlatformEnableUIControl(UIControl control, bool is_enabled);
// Updates the url in the url bar.
void PlatformSetAddressBarURL(const GURL& url);
// Sets whether the spinner is spinning.
void PlatformSetIsLoading(bool loading);
// Set the title of shell window
void PlatformSetTitle(const base::string16& title);
#if defined(OS_ANDROID)
void PlatformToggleFullscreenModeForTab(WebContents* web_contents,
bool enter_fullscreen);
bool PlatformIsFullscreenForTabOrPending(
const WebContents* web_contents) const;
#endif
// Helper method for the two public LoadData methods.
void LoadDataWithBaseURLInternal(const GURL& url,
const std::string& data,
const GURL& base_url,
bool load_as_string);
gfx::NativeView GetContentView();
void ToggleFullscreenModeForTab(WebContents* web_contents,
bool enter_fullscreen);
// WebContentsObserver
void TitleWasSet(NavigationEntry* entry) override;
void OnDevToolsWebContentsDestroyed();
std::unique_ptr<ShellJavaScriptDialogManager> dialog_manager_;
std::unique_ptr<WebContents> web_contents_;
std::unique_ptr<DevToolsWebContentsObserver> devtools_observer_;
ShellDevToolsFrontend* devtools_frontend_;
bool is_fullscreen_;
gfx::NativeWindow window_;
#if defined(OS_MACOSX)
NSTextField* url_edit_view_;
#endif
gfx::Size content_size_;
#if defined(OS_ANDROID)
base::android::ScopedJavaGlobalRef<jobject> java_object_;
#elif defined(USE_AURA)
#if defined(OS_CHROMEOS)
static wm::WMTestHelper* wm_test_helper_;
static display::Screen* test_screen_;
#else
static wm::WMState* wm_state_;
#endif
#if defined(TOOLKIT_VIEWS)
static views::ViewsDelegate* views_delegate_;
views::Widget* window_widget_;
#endif // defined(TOOLKIT_VIEWS)
static ShellPlatformDataAura* platform_;
#endif // defined(USE_AURA)
bool headless_;
bool hide_toolbar_;
// A container of all the open windows. We use a vector so we can keep track
// of ordering.
static std::vector<Shell*> windows_;
static base::Callback<void(Shell*)> shell_created_callback_;
// True if the destructur of Shell should post a quit closure on the current
// message loop if the destructed Shell object was the last one.
static bool quit_message_loop_;
};
} // namespace content
#endif // CONTENT_SHELL_BROWSER_SHELL_H_