From: Cheng Zhao Date: Thu, 25 Jun 2015 05:27:51 +0000 (+0800) Subject: Rename CloseWebContents to RequestToClosePage X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=62c44ee47b8cb2eae067760c068f026af9d40cd5;p=platform%2Fframework%2Fweb%2Fcrosswalk-tizen.git Rename CloseWebContents to RequestToClosePage --- diff --git a/atom/browser/native_window.cc b/atom/browser/native_window.cc index 01ed474..a612ec6 100644 --- a/atom/browser/native_window.cc +++ b/atom/browser/native_window.cc @@ -315,7 +315,14 @@ void NativeWindow::CapturePage(const gfx::Rect& rect, kBGRA_8888_SkColorType); } -void NativeWindow::CloseWebContents() { +content::WebContents* NativeWindow::GetWebContents() const { + if (inspectable_web_contents_) + return inspectable_web_contents_->GetWebContents(); + else + return nullptr; +} + +void NativeWindow::RequestToClosePage() { bool prevent_default = false; FOR_EACH_OBSERVER(NativeWindowObserver, observers_, @@ -344,13 +351,6 @@ void NativeWindow::CloseWebContents() { web_contents->Close(); } -content::WebContents* NativeWindow::GetWebContents() const { - if (inspectable_web_contents_) - return inspectable_web_contents_->GetWebContents(); - else - return nullptr; -} - void NativeWindow::AppendExtraCommandLineSwitches( base::CommandLine* command_line) { // Append --node-integration to renderer process. diff --git a/atom/browser/native_window.h b/atom/browser/native_window.h index cc14d7b..db546d7 100644 --- a/atom/browser/native_window.h +++ b/atom/browser/native_window.h @@ -163,17 +163,15 @@ class NativeWindow : public content::WebContentsObserver, virtual void SetMenuBarVisibility(bool visible); virtual bool IsMenuBarVisible(); - // The same with closing a tab in a real browser. - // - // Should be called by platform code when user want to close the window. - virtual void CloseWebContents(); - base::WeakPtr GetWeakPtr() { return weak_factory_.GetWeakPtr(); } content::WebContents* GetWebContents() const; + // Requests the WebContents to close, can be cancelled by the page. + virtual void RequestToClosePage(); + // Methods called by the WebContents. virtual void CloseContents(content::WebContents* source); virtual void RendererUnresponsive(content::WebContents* source); diff --git a/atom/browser/native_window_mac.mm b/atom/browser/native_window_mac.mm index 5c17ee3..fc16566 100644 --- a/atom/browser/native_window_mac.mm +++ b/atom/browser/native_window_mac.mm @@ -149,7 +149,7 @@ static const CGFloat kAtomWindowCornerRadius = 4.0; // When user tries to close the window by clicking the close button, we do // not close the window immediately, instead we try to close the web page // fisrt, and when the web page is closed the window will also be closed. - shell_->CloseWebContents(); + shell_->RequestToClosePage(); return NO; } diff --git a/atom/browser/native_window_views.cc b/atom/browser/native_window_views.cc index b4f5118..42802c9 100644 --- a/atom/browser/native_window_views.cc +++ b/atom/browser/native_window_views.cc @@ -133,7 +133,7 @@ class NativeWindowClientView : public views::ClientView { virtual ~NativeWindowClientView() {} bool CanClose() override { - static_cast(contents_view())->CloseWebContents(); + static_cast(contents_view())->RequestToClosePage(); return false; }