2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 15:04:46 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/browser/native_window.h"
|
2013-04-12 15:04:46 +08:00
|
|
|
|
|
|
|
#include <string>
|
2014-03-16 09:13:06 +08:00
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
2013-04-12 15:04:46 +08:00
|
|
|
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/browser/atom_browser_context.h"
|
2015-06-18 17:01:23 +08:00
|
|
|
#include "atom/browser/atom_browser_main_parts.h"
|
2016-06-08 14:17:33 -07:00
|
|
|
#include "atom/browser/browser.h"
|
2016-07-11 15:29:03 +09:00
|
|
|
#include "atom/browser/unresponsive_suppressor.h"
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/browser/window_list.h"
|
2014-04-04 22:04:42 +08:00
|
|
|
#include "atom/common/api/api_messages.h"
|
2014-06-23 22:08:40 +08:00
|
|
|
#include "atom/common/native_mate_converters/file_path_converter.h"
|
2014-04-04 22:04:42 +08:00
|
|
|
#include "atom/common/options_switches.h"
|
2015-01-09 17:45:50 -08:00
|
|
|
#include "base/files/file_util.h"
|
2014-04-05 00:10:57 +08:00
|
|
|
#include "base/json/json_writer.h"
|
2014-04-04 22:04:42 +08:00
|
|
|
#include "base/message_loop/message_loop.h"
|
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2016-11-30 16:30:03 +09:00
|
|
|
#include "base/threading/thread_task_runner_handle.h"
|
2014-08-11 10:01:05 +08:00
|
|
|
#include "brightray/browser/inspectable_web_contents.h"
|
|
|
|
#include "brightray/browser/inspectable_web_contents_view.h"
|
2016-08-26 15:30:02 -07:00
|
|
|
#include "components/prefs/pref_service.h"
|
2014-12-23 11:17:32 -08:00
|
|
|
#include "content/browser/renderer_host/render_widget_host_impl.h"
|
2013-04-18 20:50:58 +08:00
|
|
|
#include "content/public/browser/navigation_entry.h"
|
2014-05-22 23:48:00 +08:00
|
|
|
#include "content/public/browser/plugin_service.h"
|
2013-04-23 12:18:07 +08:00
|
|
|
#include "content/public/browser/render_process_host.h"
|
2013-05-01 15:42:30 +08:00
|
|
|
#include "content/public/browser/render_view_host.h"
|
2016-03-08 23:28:53 +09:00
|
|
|
#include "content/public/browser/render_widget_host.h"
|
2013-08-16 12:56:25 +08:00
|
|
|
#include "content/public/browser/render_widget_host_view.h"
|
2014-09-18 21:49:04 +08:00
|
|
|
#include "content/public/common/content_switches.h"
|
2013-04-22 21:32:48 +08:00
|
|
|
#include "ipc/ipc_message_macros.h"
|
2014-06-23 21:51:42 +08:00
|
|
|
#include "native_mate/dictionary.h"
|
2016-09-06 17:24:37 +09:00
|
|
|
#include "third_party/skia/include/core/SkRegion.h"
|
2013-11-21 21:50:06 +08:00
|
|
|
#include "ui/gfx/codec/png_codec.h"
|
2015-03-10 15:35:53 -07:00
|
|
|
#include "ui/gfx/geometry/point.h"
|
|
|
|
#include "ui/gfx/geometry/rect.h"
|
|
|
|
#include "ui/gfx/geometry/size.h"
|
2016-01-04 20:06:36 +08:00
|
|
|
#include "ui/gfx/geometry/size_conversions.h"
|
2015-04-02 23:02:22 +08:00
|
|
|
#include "ui/gl/gpu_switching_manager.h"
|
2013-04-12 15:04:46 +08:00
|
|
|
|
2016-07-26 13:29:27 +09:00
|
|
|
#if defined(OS_LINUX) || defined(OS_WIN)
|
|
|
|
#include "content/public/common/renderer_preferences.h"
|
|
|
|
#include "ui/gfx/font_render_params.h"
|
|
|
|
#endif
|
|
|
|
|
2015-06-24 22:14:46 +08:00
|
|
|
DEFINE_WEB_CONTENTS_USER_DATA_KEY(atom::NativeWindowRelay);
|
|
|
|
|
2013-04-12 15:04:46 +08:00
|
|
|
namespace atom {
|
|
|
|
|
2015-06-25 09:47:57 +08:00
|
|
|
NativeWindow::NativeWindow(
|
|
|
|
brightray::InspectableWebContents* inspectable_web_contents,
|
2016-06-20 14:49:24 +09:00
|
|
|
const mate::Dictionary& options,
|
|
|
|
NativeWindow* parent)
|
2015-06-25 09:47:57 +08:00
|
|
|
: content::WebContentsObserver(inspectable_web_contents->GetWebContents()),
|
2013-09-05 21:43:47 +08:00
|
|
|
has_frame_(true),
|
2014-12-23 11:17:32 -08:00
|
|
|
transparent_(false),
|
2014-08-17 12:23:00 +08:00
|
|
|
enable_larger_than_screen_(false),
|
2013-05-02 20:08:23 +08:00
|
|
|
is_closed_(false),
|
2016-05-18 23:39:16 -07:00
|
|
|
sheet_offset_x_(0.0),
|
|
|
|
sheet_offset_y_(0.0),
|
2015-07-23 10:07:58 +08:00
|
|
|
aspect_ratio_(0.0),
|
2016-06-20 14:49:24 +09:00
|
|
|
parent_(parent),
|
|
|
|
is_modal_(false),
|
2015-06-25 11:07:23 +08:00
|
|
|
inspectable_web_contents_(inspectable_web_contents),
|
2015-06-05 14:55:07 +08:00
|
|
|
weak_factory_(this) {
|
2015-11-13 13:58:31 +08:00
|
|
|
options.Get(options::kFrame, &has_frame_);
|
|
|
|
options.Get(options::kTransparent, &transparent_);
|
|
|
|
options.Get(options::kEnableLargerThanScreen, &enable_larger_than_screen_);
|
2013-09-05 21:43:47 +08:00
|
|
|
|
2016-06-20 14:49:24 +09:00
|
|
|
if (parent)
|
|
|
|
options.Get("modal", &is_modal_);
|
|
|
|
|
2016-07-26 13:29:27 +09:00
|
|
|
#if defined(OS_LINUX) || defined(OS_WIN)
|
2016-07-26 13:32:17 +09:00
|
|
|
auto* prefs = web_contents()->GetMutableRendererPrefs();
|
2016-07-26 13:29:27 +09:00
|
|
|
|
|
|
|
// Update font settings.
|
|
|
|
CR_DEFINE_STATIC_LOCAL(const gfx::FontRenderParams, params,
|
2016-07-26 13:32:17 +09:00
|
|
|
(gfx::GetFontRenderParams(gfx::FontRenderParamsQuery(), nullptr)));
|
2016-07-26 13:29:27 +09:00
|
|
|
prefs->should_antialias_text = params.antialiasing;
|
|
|
|
prefs->use_subpixel_positioning = params.subpixel_positioning;
|
|
|
|
prefs->hinting = params.hinting;
|
|
|
|
prefs->use_autohinter = params.autohinter;
|
|
|
|
prefs->use_bitmaps = params.use_bitmaps;
|
|
|
|
prefs->subpixel_rendering = params.subpixel_rendering;
|
|
|
|
#endif
|
|
|
|
|
2014-12-23 11:17:32 -08:00
|
|
|
// Tell the content module to initialize renderer widget with transparent
|
|
|
|
// mode.
|
2015-04-02 23:02:22 +08:00
|
|
|
ui::GpuSwitchingManager::SetTransparent(transparent_);
|
2014-12-23 11:17:32 -08:00
|
|
|
|
2013-05-02 22:54:09 +08:00
|
|
|
WindowList::AddWindow(this);
|
2013-04-12 15:04:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
NativeWindow::~NativeWindow() {
|
2013-05-02 20:08:23 +08:00
|
|
|
// It's possible that the windows gets destroyed before it's closed, in that
|
|
|
|
// case we need to ensure the OnWindowClosed message is still notified.
|
|
|
|
NotifyWindowClosed();
|
2013-04-12 15:04:46 +08:00
|
|
|
}
|
|
|
|
|
2013-04-30 20:32:23 +08:00
|
|
|
// static
|
2015-05-20 10:27:16 +08:00
|
|
|
NativeWindow* NativeWindow::FromWebContents(
|
|
|
|
content::WebContents* web_contents) {
|
2017-04-06 14:43:37 -07:00
|
|
|
for (const auto& window : WindowList::GetWindows()) {
|
2015-09-18 14:12:48 +08:00
|
|
|
if (window->web_contents() == web_contents)
|
2013-04-30 20:32:23 +08:00
|
|
|
return window;
|
|
|
|
}
|
2014-12-17 14:40:19 -08:00
|
|
|
return nullptr;
|
2013-04-30 20:32:23 +08:00
|
|
|
}
|
|
|
|
|
2014-06-23 21:51:42 +08:00
|
|
|
void NativeWindow::InitFromOptions(const mate::Dictionary& options) {
|
2013-04-12 15:04:46 +08:00
|
|
|
// Setup window from options.
|
2013-07-01 22:01:17 +08:00
|
|
|
int x = -1, y = -1;
|
2013-05-10 20:34:05 +08:00
|
|
|
bool center;
|
2015-11-13 13:58:31 +08:00
|
|
|
if (options.Get(options::kX, &x) && options.Get(options::kY, &y)) {
|
2016-01-15 17:31:31 +01:00
|
|
|
SetPosition(gfx::Point(x, y));
|
2015-11-13 13:58:31 +08:00
|
|
|
} else if (options.Get(options::kCenter, ¢er) && center) {
|
2013-05-10 20:34:05 +08:00
|
|
|
Center();
|
2013-04-12 15:04:46 +08:00
|
|
|
}
|
2015-10-15 16:35:50 +08:00
|
|
|
// On Linux and Window we may already have maximum size defined.
|
|
|
|
extensions::SizeConstraints size_constraints(GetContentSizeConstraints());
|
2014-08-19 21:43:18 +08:00
|
|
|
int min_height = 0, min_width = 0;
|
2015-11-13 13:58:31 +08:00
|
|
|
if (options.Get(options::kMinHeight, &min_height) |
|
|
|
|
options.Get(options::kMinWidth, &min_width)) {
|
2015-10-05 20:36:28 +08:00
|
|
|
size_constraints.set_minimum_size(gfx::Size(min_width, min_height));
|
2013-04-12 15:04:46 +08:00
|
|
|
}
|
2015-03-26 12:23:38 +08:00
|
|
|
int max_height = INT_MAX, max_width = INT_MAX;
|
2015-11-13 13:58:31 +08:00
|
|
|
if (options.Get(options::kMaxHeight, &max_height) |
|
|
|
|
options.Get(options::kMaxWidth, &max_width)) {
|
2015-10-05 20:36:28 +08:00
|
|
|
size_constraints.set_maximum_size(gfx::Size(max_width, max_height));
|
|
|
|
}
|
|
|
|
bool use_content_size = false;
|
2015-11-13 13:58:31 +08:00
|
|
|
options.Get(options::kUseContentSize, &use_content_size);
|
2015-10-05 20:36:28 +08:00
|
|
|
if (use_content_size) {
|
|
|
|
SetContentSizeConstraints(size_constraints);
|
|
|
|
} else {
|
|
|
|
SetSizeConstraints(size_constraints);
|
2013-04-12 15:04:46 +08:00
|
|
|
}
|
2016-03-07 13:48:33 -08:00
|
|
|
#if defined(USE_X11)
|
|
|
|
bool resizable;
|
|
|
|
if (options.Get(options::kResizable, &resizable)) {
|
|
|
|
SetResizable(resizable);
|
|
|
|
}
|
|
|
|
#endif
|
2015-10-06 15:23:23 +08:00
|
|
|
#if defined(OS_WIN) || defined(USE_X11)
|
2016-01-18 23:46:35 +01:00
|
|
|
bool closable;
|
|
|
|
if (options.Get(options::kClosable, &closable)) {
|
|
|
|
SetClosable(closable);
|
|
|
|
}
|
2015-10-06 15:23:23 +08:00
|
|
|
#endif
|
2016-01-23 02:23:18 -08:00
|
|
|
bool movable;
|
2016-01-23 03:35:30 -08:00
|
|
|
if (options.Get(options::kMovable, &movable)) {
|
2016-01-23 02:23:18 -08:00
|
|
|
SetMovable(movable);
|
|
|
|
}
|
2016-01-23 02:55:12 -08:00
|
|
|
bool has_shadow;
|
|
|
|
if (options.Get(options::kHasShadow, &has_shadow)) {
|
|
|
|
SetHasShadow(has_shadow);
|
|
|
|
}
|
2013-04-12 15:04:46 +08:00
|
|
|
bool top;
|
2015-11-13 13:58:31 +08:00
|
|
|
if (options.Get(options::kAlwaysOnTop, &top) && top) {
|
2013-04-12 15:04:46 +08:00
|
|
|
SetAlwaysOnTop(true);
|
|
|
|
}
|
2016-02-22 10:23:56 +01:00
|
|
|
bool fullscreenable = true;
|
|
|
|
bool fullscreen = false;
|
2016-05-30 09:12:16 +09:00
|
|
|
if (options.Get(options::kFullscreen, &fullscreen) && !fullscreen) {
|
|
|
|
// Disable fullscreen button if 'fullscreen' is specified to false.
|
|
|
|
#if defined(OS_MACOSX)
|
2016-02-22 10:23:56 +01:00
|
|
|
fullscreenable = false;
|
2016-05-26 10:06:42 -07:00
|
|
|
#endif
|
2016-05-30 09:12:16 +09:00
|
|
|
}
|
2016-03-05 21:54:41 +09:00
|
|
|
// Overriden by 'fullscreenable'.
|
|
|
|
options.Get(options::kFullScreenable, &fullscreenable);
|
2016-02-22 10:23:56 +01:00
|
|
|
SetFullScreenable(fullscreenable);
|
2016-03-05 21:54:41 +09:00
|
|
|
if (fullscreen) {
|
2014-11-25 14:34:14 +08:00
|
|
|
SetFullScreen(true);
|
2016-03-05 21:54:41 +09:00
|
|
|
}
|
2014-06-16 10:29:51 +08:00
|
|
|
bool skip;
|
2016-06-13 17:24:45 +09:00
|
|
|
if (options.Get(options::kSkipTaskbar, &skip)) {
|
2014-06-16 10:29:51 +08:00
|
|
|
SetSkipTaskbar(skip);
|
|
|
|
}
|
2013-04-12 15:04:46 +08:00
|
|
|
bool kiosk;
|
2015-11-13 13:58:31 +08:00
|
|
|
if (options.Get(options::kKiosk, &kiosk) && kiosk) {
|
2013-04-12 15:04:46 +08:00
|
|
|
SetKiosk(kiosk);
|
|
|
|
}
|
2015-10-23 11:35:33 +08:00
|
|
|
std::string color;
|
2015-11-13 13:58:31 +08:00
|
|
|
if (options.Get(options::kBackgroundColor, &color)) {
|
2015-10-23 11:35:33 +08:00
|
|
|
SetBackgroundColor(color);
|
2016-04-14 19:35:31 +09:00
|
|
|
} else if (!transparent()) {
|
|
|
|
// For normal window, use white as default background.
|
2016-04-03 12:04:58 +09:00
|
|
|
SetBackgroundColor("#FFFF");
|
2015-10-23 11:35:33 +08:00
|
|
|
}
|
2016-06-08 14:17:33 -07:00
|
|
|
std::string title(Browser::Get()->GetName());
|
2015-11-13 13:58:31 +08:00
|
|
|
options.Get(options::kTitle, &title);
|
2013-04-12 15:04:46 +08:00
|
|
|
SetTitle(title);
|
|
|
|
|
|
|
|
// Then show it.
|
|
|
|
bool show = true;
|
2015-11-13 13:58:31 +08:00
|
|
|
options.Get(options::kShow, &show);
|
2015-10-01 17:46:11 +08:00
|
|
|
if (show)
|
2013-04-12 15:04:46 +08:00
|
|
|
Show();
|
|
|
|
}
|
|
|
|
|
2016-01-15 05:54:12 +01:00
|
|
|
void NativeWindow::SetSize(const gfx::Size& size, bool animate) {
|
|
|
|
SetBounds(gfx::Rect(GetPosition(), size), animate);
|
2015-05-04 12:43:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Size NativeWindow::GetSize() {
|
|
|
|
return GetBounds().size();
|
|
|
|
}
|
|
|
|
|
2016-01-15 05:54:12 +01:00
|
|
|
void NativeWindow::SetPosition(const gfx::Point& position, bool animate) {
|
|
|
|
SetBounds(gfx::Rect(position, GetSize()), animate);
|
2015-05-04 12:43:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Point NativeWindow::GetPosition() {
|
|
|
|
return GetBounds().origin();
|
|
|
|
}
|
|
|
|
|
2016-01-15 05:54:12 +01:00
|
|
|
void NativeWindow::SetContentSize(const gfx::Size& size, bool animate) {
|
2016-08-04 12:10:01 -07:00
|
|
|
SetSize(ContentBoundsToWindowBounds(gfx::Rect(size)).size(), animate);
|
2015-10-05 16:19:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Size NativeWindow::GetContentSize() {
|
2016-08-04 10:58:59 -07:00
|
|
|
return GetContentBounds().size();
|
2016-08-04 12:02:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SetContentBounds(const gfx::Rect& bounds, bool animate) {
|
|
|
|
SetBounds(ContentBoundsToWindowBounds(bounds), animate);
|
2016-08-04 10:58:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Rect NativeWindow::GetContentBounds() {
|
|
|
|
return WindowBoundsToContentBounds(GetBounds());
|
2015-10-05 16:19:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SetSizeConstraints(
|
|
|
|
const extensions::SizeConstraints& window_constraints) {
|
2016-07-12 10:05:32 -07:00
|
|
|
extensions::SizeConstraints content_constraints(GetContentSizeConstraints());
|
2016-08-04 10:58:59 -07:00
|
|
|
if (window_constraints.HasMaximumSize()) {
|
|
|
|
gfx::Rect max_bounds = WindowBoundsToContentBounds(
|
|
|
|
gfx::Rect(window_constraints.GetMaximumSize()));
|
|
|
|
content_constraints.set_maximum_size(max_bounds.size());
|
|
|
|
}
|
|
|
|
if (window_constraints.HasMinimumSize()) {
|
|
|
|
gfx::Rect min_bounds = WindowBoundsToContentBounds(
|
|
|
|
gfx::Rect(window_constraints.GetMinimumSize()));
|
|
|
|
content_constraints.set_minimum_size(min_bounds.size());
|
|
|
|
}
|
2015-10-05 16:19:01 +08:00
|
|
|
SetContentSizeConstraints(content_constraints);
|
|
|
|
}
|
|
|
|
|
2017-05-21 20:57:19 +02:00
|
|
|
extensions::SizeConstraints NativeWindow::GetSizeConstraints() const {
|
2015-10-05 16:19:01 +08:00
|
|
|
extensions::SizeConstraints content_constraints = GetContentSizeConstraints();
|
|
|
|
extensions::SizeConstraints window_constraints;
|
2016-08-04 10:58:59 -07:00
|
|
|
if (content_constraints.HasMaximumSize()) {
|
|
|
|
gfx::Rect max_bounds = ContentBoundsToWindowBounds(
|
|
|
|
gfx::Rect(content_constraints.GetMaximumSize()));
|
2016-08-04 12:14:23 -07:00
|
|
|
window_constraints.set_maximum_size(max_bounds.size());
|
2016-08-04 10:58:59 -07:00
|
|
|
}
|
|
|
|
if (content_constraints.HasMinimumSize()) {
|
|
|
|
gfx::Rect min_bounds = ContentBoundsToWindowBounds(
|
|
|
|
gfx::Rect(content_constraints.GetMinimumSize()));
|
|
|
|
window_constraints.set_minimum_size(min_bounds.size());
|
|
|
|
}
|
2015-10-05 16:19:01 +08:00
|
|
|
return window_constraints;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SetContentSizeConstraints(
|
|
|
|
const extensions::SizeConstraints& size_constraints) {
|
|
|
|
size_constraints_ = size_constraints;
|
|
|
|
}
|
|
|
|
|
2017-05-21 20:57:19 +02:00
|
|
|
extensions::SizeConstraints NativeWindow::GetContentSizeConstraints() const {
|
2015-10-05 16:19:01 +08:00
|
|
|
return size_constraints_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SetMinimumSize(const gfx::Size& size) {
|
|
|
|
extensions::SizeConstraints size_constraints;
|
|
|
|
size_constraints.set_minimum_size(size);
|
|
|
|
SetSizeConstraints(size_constraints);
|
|
|
|
}
|
|
|
|
|
2017-05-21 20:57:19 +02:00
|
|
|
gfx::Size NativeWindow::GetMinimumSize() const {
|
2015-10-05 16:19:01 +08:00
|
|
|
return GetSizeConstraints().GetMinimumSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SetMaximumSize(const gfx::Size& size) {
|
|
|
|
extensions::SizeConstraints size_constraints;
|
|
|
|
size_constraints.set_maximum_size(size);
|
|
|
|
SetSizeConstraints(size_constraints);
|
|
|
|
}
|
|
|
|
|
2017-05-21 20:57:19 +02:00
|
|
|
gfx::Size NativeWindow::GetMaximumSize() const {
|
2015-10-05 16:19:01 +08:00
|
|
|
return GetSizeConstraints().GetMaximumSize();
|
|
|
|
}
|
|
|
|
|
2016-05-19 20:19:08 -07:00
|
|
|
void NativeWindow::SetSheetOffset(const double offsetX, const double offsetY) {
|
2016-05-18 23:39:16 -07:00
|
|
|
sheet_offset_x_ = offsetX;
|
|
|
|
sheet_offset_y_ = offsetY;
|
2016-04-18 22:39:12 -07:00
|
|
|
}
|
|
|
|
|
2016-05-18 23:39:16 -07:00
|
|
|
double NativeWindow::GetSheetOffsetX() {
|
|
|
|
return sheet_offset_x_;
|
|
|
|
}
|
|
|
|
|
|
|
|
double NativeWindow::GetSheetOffsetY() {
|
|
|
|
return sheet_offset_y_;
|
2016-04-18 22:39:12 -07:00
|
|
|
}
|
|
|
|
|
2014-05-27 14:15:34 +08:00
|
|
|
void NativeWindow::SetRepresentedFilename(const std::string& filename) {
|
|
|
|
}
|
|
|
|
|
2014-07-18 21:42:26 +08:00
|
|
|
std::string NativeWindow::GetRepresentedFilename() {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2014-05-27 14:15:34 +08:00
|
|
|
void NativeWindow::SetDocumentEdited(bool edited) {
|
|
|
|
}
|
|
|
|
|
2014-08-21 21:00:49 +08:00
|
|
|
bool NativeWindow::IsDocumentEdited() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-13 17:10:28 +09:00
|
|
|
void NativeWindow::SetFocusable(bool focusable) {
|
|
|
|
}
|
|
|
|
|
2016-07-06 16:04:18 -07:00
|
|
|
void NativeWindow::SetMenu(AtomMenuModel* menu) {
|
2014-02-10 20:07:38 +08:00
|
|
|
}
|
|
|
|
|
2016-06-20 14:49:24 +09:00
|
|
|
void NativeWindow::SetParentWindow(NativeWindow* parent) {
|
|
|
|
parent_ = parent;
|
2016-06-18 22:53:41 +09:00
|
|
|
}
|
|
|
|
|
2016-11-28 11:38:40 -08:00
|
|
|
void NativeWindow::SetAutoHideCursor(bool auto_hide) {
|
|
|
|
}
|
|
|
|
|
2017-08-21 00:46:10 -04:00
|
|
|
void NativeWindow::SelectPreviousTab() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SelectNextTab() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::MergeAllWindows() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::MoveTabToNewWindow() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::ToggleTabBar() {
|
|
|
|
}
|
|
|
|
|
2016-11-10 11:59:25 +01:00
|
|
|
void NativeWindow::SetVibrancy(const std::string& filename) {
|
|
|
|
}
|
|
|
|
|
2017-02-28 16:14:02 -08:00
|
|
|
void NativeWindow::SetTouchBar(
|
|
|
|
const std::vector<mate::PersistentDictionary>& items) {
|
2016-11-27 16:57:01 +11:00
|
|
|
}
|
|
|
|
|
2017-02-28 16:08:12 -08:00
|
|
|
void NativeWindow::RefreshTouchBarItem(const std::string& item_id) {
|
2016-12-16 17:24:51 +11:00
|
|
|
}
|
|
|
|
|
2017-03-29 12:41:49 -07:00
|
|
|
void NativeWindow::SetEscapeTouchBarItem(
|
|
|
|
const mate::PersistentDictionary& item) {
|
2017-03-27 11:22:52 +11:00
|
|
|
}
|
|
|
|
|
2013-05-24 17:51:15 +08:00
|
|
|
void NativeWindow::FocusOnWebView() {
|
2016-03-08 23:28:53 +09:00
|
|
|
web_contents()->GetRenderViewHost()->GetWidget()->Focus();
|
2013-05-24 17:51:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::BlurWebView() {
|
2016-03-08 23:28:53 +09:00
|
|
|
web_contents()->GetRenderViewHost()->GetWidget()->Blur();
|
2013-05-24 17:51:15 +08:00
|
|
|
}
|
|
|
|
|
2013-08-16 12:56:25 +08:00
|
|
|
bool NativeWindow::IsWebViewFocused() {
|
2016-03-08 23:28:53 +09:00
|
|
|
auto host_view = web_contents()->GetRenderViewHost()->GetWidget()->GetView();
|
2014-03-10 09:24:51 +08:00
|
|
|
return host_view && host_view->HasFocus();
|
2013-08-16 12:56:25 +08:00
|
|
|
}
|
|
|
|
|
2015-09-18 13:49:33 +08:00
|
|
|
void NativeWindow::SetAutoHideMenuBar(bool auto_hide) {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NativeWindow::IsMenuBarAutoHide() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SetMenuBarVisibility(bool visible) {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NativeWindow::IsMenuBarVisible() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
double NativeWindow::GetAspectRatio() {
|
|
|
|
return aspect_ratio_;
|
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Size NativeWindow::GetAspectRatioExtraSize() {
|
|
|
|
return aspect_ratio_extraSize_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SetAspectRatio(double aspect_ratio,
|
|
|
|
const gfx::Size& extra_size) {
|
|
|
|
aspect_ratio_ = aspect_ratio;
|
|
|
|
aspect_ratio_extraSize_ = extra_size;
|
|
|
|
}
|
|
|
|
|
2016-10-14 09:42:50 -07:00
|
|
|
void NativeWindow::PreviewFile(const std::string& path,
|
2016-10-26 09:47:22 +09:00
|
|
|
const std::string& display_name) {
|
2016-10-11 18:08:01 -07:00
|
|
|
}
|
|
|
|
|
2016-11-21 13:30:13 -05:00
|
|
|
void NativeWindow::CloseFilePreview() {
|
|
|
|
}
|
|
|
|
|
2015-06-25 13:27:51 +08:00
|
|
|
void NativeWindow::RequestToClosePage() {
|
2013-05-01 16:33:19 +08:00
|
|
|
bool prevent_default = false;
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.WillCloseWindow(&prevent_default);
|
2013-06-26 15:35:10 +08:00
|
|
|
if (prevent_default) {
|
|
|
|
WindowList::WindowCloseCancelled(this);
|
2013-05-01 16:33:19 +08:00
|
|
|
return;
|
2013-06-26 15:35:10 +08:00
|
|
|
}
|
2013-05-01 16:33:19 +08:00
|
|
|
|
2013-11-29 14:52:12 +08:00
|
|
|
// Assume the window is not responding if it doesn't cancel the close and is
|
2014-05-09 12:10:37 +08:00
|
|
|
// not closed in 5s, in this way we can quickly show the unresponsive
|
2013-11-29 14:52:12 +08:00
|
|
|
// dialog when the window is busy executing some script withouth waiting for
|
|
|
|
// the unresponsive timeout.
|
2014-04-08 14:22:22 +08:00
|
|
|
if (window_unresposive_closure_.IsCancelled())
|
2014-05-09 12:10:37 +08:00
|
|
|
ScheduleUnresponsiveEvent(5000);
|
2013-11-29 14:52:12 +08:00
|
|
|
|
2016-08-15 21:13:18 -03:00
|
|
|
if (!web_contents())
|
|
|
|
// Already closed by renderer
|
|
|
|
return;
|
|
|
|
|
2015-06-25 14:54:00 +08:00
|
|
|
if (web_contents()->NeedToFireBeforeUnload())
|
2016-07-04 15:08:55 +09:00
|
|
|
web_contents()->DispatchBeforeUnload();
|
2013-05-01 15:42:30 +08:00
|
|
|
else
|
2015-06-25 14:54:00 +08:00
|
|
|
web_contents()->Close();
|
2013-05-01 15:42:30 +08:00
|
|
|
}
|
|
|
|
|
2015-06-25 13:29:30 +08:00
|
|
|
void NativeWindow::CloseContents(content::WebContents* source) {
|
|
|
|
if (!inspectable_web_contents_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
inspectable_web_contents_->GetView()->SetDelegate(nullptr);
|
|
|
|
inspectable_web_contents_ = nullptr;
|
2015-06-25 14:54:00 +08:00
|
|
|
Observe(nullptr);
|
2015-06-25 13:29:30 +08:00
|
|
|
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.WillDestroyNativeObject();
|
2016-06-19 15:47:27 +09:00
|
|
|
|
2015-06-25 13:29:30 +08:00
|
|
|
// When the web contents is gone, close the window immediately, but the
|
|
|
|
// memory will not be freed until you call delete.
|
|
|
|
// In this way, it would be safe to manage windows via smart pointers. If you
|
|
|
|
// want to free memory when the window is closed, you can do deleting by
|
|
|
|
// overriding the OnWindowClosed method in the observer.
|
|
|
|
CloseImmediately();
|
|
|
|
|
|
|
|
// Do not sent "unresponsive" event after window is closed.
|
|
|
|
window_unresposive_closure_.Cancel();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::RendererUnresponsive(content::WebContents* source) {
|
|
|
|
// Schedule the unresponsive shortly later, since we may receive the
|
|
|
|
// responsive event soon. This could happen after the whole application had
|
|
|
|
// blocked for a while.
|
|
|
|
// Also notice that when closing this event would be ignored because we have
|
2016-05-12 08:14:17 +10:00
|
|
|
// explicitly started a close timeout counter. This is on purpose because we
|
2015-06-25 13:29:30 +08:00
|
|
|
// don't want the unresponsive event to be sent too early when user is closing
|
|
|
|
// the window.
|
|
|
|
ScheduleUnresponsiveEvent(50);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::RendererResponsive(content::WebContents* source) {
|
|
|
|
window_unresposive_closure_.Cancel();
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnRendererResponsive();
|
2015-06-25 13:29:30 +08:00
|
|
|
}
|
|
|
|
|
2013-05-02 20:08:23 +08:00
|
|
|
void NativeWindow::NotifyWindowClosed() {
|
|
|
|
if (is_closed_)
|
|
|
|
return;
|
|
|
|
|
2015-06-27 17:01:20 +08:00
|
|
|
WindowList::RemoveWindow(this);
|
|
|
|
|
2013-05-02 20:08:23 +08:00
|
|
|
is_closed_ = true;
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowClosed();
|
2013-05-02 20:08:23 +08:00
|
|
|
}
|
|
|
|
|
2017-04-21 20:45:30 +00:00
|
|
|
void NativeWindow::NotifyWindowEndSession() {
|
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowEndSession();
|
|
|
|
}
|
|
|
|
|
2013-05-24 17:51:15 +08:00
|
|
|
void NativeWindow::NotifyWindowBlur() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowBlur();
|
2013-05-24 17:51:15 +08:00
|
|
|
}
|
|
|
|
|
2014-05-21 13:46:13 -04:00
|
|
|
void NativeWindow::NotifyWindowFocus() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowFocus();
|
2014-05-21 13:46:13 -04:00
|
|
|
}
|
|
|
|
|
2016-03-08 11:11:17 -08:00
|
|
|
void NativeWindow::NotifyWindowShow() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowShow();
|
2016-03-08 11:11:17 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowHide() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowHide();
|
2016-03-08 11:11:17 -08:00
|
|
|
}
|
|
|
|
|
2014-11-25 12:43:25 +08:00
|
|
|
void NativeWindow::NotifyWindowMaximize() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowMaximize();
|
2014-11-25 12:43:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowUnmaximize() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowUnmaximize();
|
2014-11-25 12:43:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowMinimize() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowMinimize();
|
2014-11-25 12:43:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowRestore() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowRestore();
|
2014-11-25 12:43:25 +08:00
|
|
|
}
|
|
|
|
|
2015-05-09 21:25:10 +05:30
|
|
|
void NativeWindow::NotifyWindowResize() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowResize();
|
2015-05-09 21:25:10 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowMove() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowMove();
|
2015-05-09 21:25:10 +05:30
|
|
|
}
|
|
|
|
|
2015-05-20 14:07:13 +05:30
|
|
|
void NativeWindow::NotifyWindowMoved() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowMoved();
|
2015-05-20 14:07:13 +05:30
|
|
|
}
|
|
|
|
|
2014-11-25 12:43:25 +08:00
|
|
|
void NativeWindow::NotifyWindowEnterFullScreen() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowEnterFullScreen();
|
2014-11-25 12:43:25 +08:00
|
|
|
}
|
|
|
|
|
2016-01-21 16:31:09 -08:00
|
|
|
void NativeWindow::NotifyWindowScrollTouchBegin() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowScrollTouchBegin();
|
2016-01-21 09:40:21 -08:00
|
|
|
}
|
|
|
|
|
2016-01-21 16:31:09 -08:00
|
|
|
void NativeWindow::NotifyWindowScrollTouchEnd() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
2017-02-13 11:24:47 -08:00
|
|
|
observer.OnWindowScrollTouchEnd();
|
2016-01-21 09:40:21 -08:00
|
|
|
}
|
|
|
|
|
2016-09-17 22:29:32 +08:00
|
|
|
void NativeWindow::NotifyWindowScrollTouchEdge() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowScrollTouchEdge();
|
2016-09-17 22:29:32 +08:00
|
|
|
}
|
|
|
|
|
2016-03-23 15:20:11 +00:00
|
|
|
void NativeWindow::NotifyWindowSwipe(const std::string& direction) {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowSwipe(direction);
|
2016-03-18 15:20:04 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 10:31:25 -07:00
|
|
|
void NativeWindow::NotifyWindowSheetBegin() {
|
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowSheetBegin();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowSheetEnd() {
|
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowSheetEnd();
|
|
|
|
}
|
|
|
|
|
2014-11-25 12:43:25 +08:00
|
|
|
void NativeWindow::NotifyWindowLeaveFullScreen() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowLeaveFullScreen();
|
2014-11-25 12:43:25 +08:00
|
|
|
}
|
|
|
|
|
2015-05-21 10:39:31 +05:30
|
|
|
void NativeWindow::NotifyWindowEnterHtmlFullScreen() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowEnterHtmlFullScreen();
|
2015-05-21 10:39:31 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowLeaveHtmlFullScreen() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowLeaveHtmlFullScreen();
|
2015-05-21 10:39:31 +05:30
|
|
|
}
|
|
|
|
|
2015-08-05 12:46:32 +08:00
|
|
|
void NativeWindow::NotifyWindowExecuteWindowsCommand(
|
|
|
|
const std::string& command) {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnExecuteWindowsCommand(command);
|
2015-08-05 12:46:32 +08:00
|
|
|
}
|
|
|
|
|
2016-11-27 16:57:01 +11:00
|
|
|
void NativeWindow::NotifyTouchBarItemInteraction(
|
2017-02-28 15:37:15 -08:00
|
|
|
const std::string& item_id,
|
|
|
|
const base::DictionaryValue& details) {
|
2017-02-27 09:20:25 -08:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
2017-02-28 15:37:15 -08:00
|
|
|
observer.OnTouchBarItemResult(item_id, details);
|
2017-02-27 09:20:25 -08:00
|
|
|
}
|
2016-11-27 16:57:01 +11:00
|
|
|
|
2017-06-11 01:19:01 -07:00
|
|
|
void NativeWindow::NotifyNewWindowForTab() {
|
|
|
|
for (NativeWindowObserver &observer : observers_)
|
|
|
|
observer.OnNewWindowForTab();
|
|
|
|
}
|
|
|
|
|
2015-10-27 03:12:01 +02:00
|
|
|
#if defined(OS_WIN)
|
2015-10-29 10:53:48 +08:00
|
|
|
void NativeWindow::NotifyWindowMessage(
|
|
|
|
UINT message, WPARAM w_param, LPARAM l_param) {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowMessage(message, w_param, l_param);
|
2015-10-27 03:12:01 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-05-23 10:59:39 +09:00
|
|
|
std::unique_ptr<SkRegion> NativeWindow::DraggableRegionsToSkRegion(
|
2015-10-21 07:33:43 +08:00
|
|
|
const std::vector<DraggableRegion>& regions) {
|
2016-05-23 10:59:39 +09:00
|
|
|
std::unique_ptr<SkRegion> sk_region(new SkRegion);
|
2015-10-21 07:33:43 +08:00
|
|
|
for (const DraggableRegion& region : regions) {
|
|
|
|
sk_region->op(
|
|
|
|
region.bounds.x(),
|
|
|
|
region.bounds.y(),
|
|
|
|
region.bounds.right(),
|
|
|
|
region.bounds.bottom(),
|
|
|
|
region.draggable ? SkRegion::kUnion_Op : SkRegion::kDifference_Op);
|
|
|
|
}
|
2016-03-08 23:28:53 +09:00
|
|
|
return sk_region;
|
2015-10-21 07:33:43 +08:00
|
|
|
}
|
|
|
|
|
2015-06-25 13:29:30 +08:00
|
|
|
void NativeWindow::RenderViewCreated(
|
|
|
|
content::RenderViewHost* render_view_host) {
|
|
|
|
if (!transparent_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
content::RenderWidgetHostImpl* impl = content::RenderWidgetHostImpl::FromID(
|
|
|
|
render_view_host->GetProcess()->GetID(),
|
|
|
|
render_view_host->GetRoutingID());
|
|
|
|
if (impl)
|
|
|
|
impl->SetBackgroundOpaque(false);
|
|
|
|
}
|
|
|
|
|
2015-06-24 21:28:36 +08:00
|
|
|
void NativeWindow::BeforeUnloadDialogCancelled() {
|
|
|
|
WindowList::WindowCloseCancelled(this);
|
|
|
|
|
|
|
|
// Cancel unresponsive event when window close is cancelled.
|
|
|
|
window_unresposive_closure_.Cancel();
|
|
|
|
}
|
|
|
|
|
2016-06-13 21:19:56 +09:00
|
|
|
void NativeWindow::DidFirstVisuallyNonEmptyPaint() {
|
2016-06-13 22:18:57 +09:00
|
|
|
if (IsVisible())
|
|
|
|
return;
|
|
|
|
|
2016-06-13 21:19:56 +09:00
|
|
|
// When there is a non-empty first paint, resize the RenderWidget to force
|
|
|
|
// Chromium to draw.
|
|
|
|
const auto view = web_contents()->GetRenderWidgetHostView();
|
|
|
|
view->Show();
|
|
|
|
view->SetSize(GetContentSize());
|
|
|
|
|
|
|
|
// Emit the ReadyToShow event in next tick in case of pending drawing work.
|
2016-11-30 16:30:03 +09:00
|
|
|
base::ThreadTaskRunnerHandle::Get()->PostTask(
|
2016-06-13 21:19:56 +09:00
|
|
|
FROM_HERE,
|
|
|
|
base::Bind(&NativeWindow::NotifyReadyToShow, GetWeakPtr()));
|
|
|
|
}
|
|
|
|
|
2013-04-21 11:01:04 +08:00
|
|
|
bool NativeWindow::OnMessageReceived(const IPC::Message& message) {
|
2013-04-22 21:32:48 +08:00
|
|
|
bool handled = true;
|
|
|
|
IPC_BEGIN_MESSAGE_MAP(NativeWindow, message)
|
2013-09-05 20:06:54 +08:00
|
|
|
IPC_MESSAGE_HANDLER(AtomViewHostMsg_UpdateDraggableRegions,
|
|
|
|
UpdateDraggableRegions)
|
2013-04-22 21:32:48 +08:00
|
|
|
IPC_MESSAGE_UNHANDLED(handled = false)
|
|
|
|
IPC_END_MESSAGE_MAP()
|
|
|
|
|
|
|
|
return handled;
|
2013-04-21 11:01:04 +08:00
|
|
|
}
|
|
|
|
|
2015-08-05 12:32:22 +08:00
|
|
|
void NativeWindow::UpdateDraggableRegions(
|
|
|
|
const std::vector<DraggableRegion>& regions) {
|
|
|
|
// Draggable region is not supported for non-frameless window.
|
2016-05-17 15:48:14 +09:00
|
|
|
if (has_frame_)
|
2015-08-05 12:32:22 +08:00
|
|
|
return;
|
2015-08-05 12:34:45 +08:00
|
|
|
draggable_region_ = DraggableRegionsToSkRegion(regions);
|
2015-08-05 12:32:22 +08:00
|
|
|
}
|
|
|
|
|
2014-03-25 18:10:51 +08:00
|
|
|
void NativeWindow::ScheduleUnresponsiveEvent(int ms) {
|
2014-05-09 11:26:13 +08:00
|
|
|
if (!window_unresposive_closure_.IsCancelled())
|
|
|
|
return;
|
|
|
|
|
2014-03-25 18:10:51 +08:00
|
|
|
window_unresposive_closure_.Reset(
|
|
|
|
base::Bind(&NativeWindow::NotifyWindowUnresponsive,
|
|
|
|
weak_factory_.GetWeakPtr()));
|
2016-11-30 16:30:03 +09:00
|
|
|
base::ThreadTaskRunnerHandle::Get()->PostDelayedTask(
|
2014-03-25 18:10:51 +08:00
|
|
|
FROM_HERE,
|
|
|
|
window_unresposive_closure_.callback(),
|
|
|
|
base::TimeDelta::FromMilliseconds(ms));
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowUnresponsive() {
|
|
|
|
window_unresposive_closure_.Cancel();
|
|
|
|
|
2017-01-24 12:34:39 +09:00
|
|
|
if (!is_closed_ && !IsUnresponsiveEventSuppressed() && IsEnabled()) {
|
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnRendererUnresponsive();
|
|
|
|
}
|
2014-03-25 18:10:51 +08:00
|
|
|
}
|
|
|
|
|
2016-06-13 21:19:56 +09:00
|
|
|
void NativeWindow::NotifyReadyToShow() {
|
2017-01-24 12:34:39 +09:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnReadyToShow();
|
2016-06-13 21:19:56 +09:00
|
|
|
}
|
|
|
|
|
2013-04-12 15:04:46 +08:00
|
|
|
} // namespace atom
|