Implement window.moveTo and window.ResizeTo. Fix #2.
This commit is contained in:
parent
bfea9775a0
commit
349ed4fd73
2 changed files with 15 additions and 0 deletions
|
@ -196,6 +196,12 @@ void NativeWindow::BeforeUnloadFired(content::WebContents* tab,
|
||||||
WindowList::WindowCloseCancelled(this);
|
WindowList::WindowCloseCancelled(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void NativeWindow::MoveContents(content::WebContents* source,
|
||||||
|
const gfx::Rect& pos) {
|
||||||
|
SetPosition(pos.origin());
|
||||||
|
SetSize(pos.size());
|
||||||
|
}
|
||||||
|
|
||||||
void NativeWindow::CloseContents(content::WebContents* source) {
|
void NativeWindow::CloseContents(content::WebContents* source) {
|
||||||
// When the web contents is gone, close the window immediately, but the
|
// When the web contents is gone, close the window immediately, but the
|
||||||
// memory will not be freed until you call delete.
|
// memory will not be freed until you call delete.
|
||||||
|
@ -207,6 +213,11 @@ void NativeWindow::CloseContents(content::WebContents* source) {
|
||||||
NotifyWindowClosed();
|
NotifyWindowClosed();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool NativeWindow::IsPopupOrPanel(const content::WebContents* source) const {
|
||||||
|
// Only popup window can use things like window.moveTo.
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
bool NativeWindow::OnMessageReceived(const IPC::Message& message) {
|
bool NativeWindow::OnMessageReceived(const IPC::Message& message) {
|
||||||
bool handled = true;
|
bool handled = true;
|
||||||
IPC_BEGIN_MESSAGE_MAP(NativeWindow, message)
|
IPC_BEGIN_MESSAGE_MAP(NativeWindow, message)
|
||||||
|
|
|
@ -131,7 +131,11 @@ class NativeWindow : public content::WebContentsDelegate,
|
||||||
virtual void BeforeUnloadFired(content::WebContents* tab,
|
virtual void BeforeUnloadFired(content::WebContents* tab,
|
||||||
bool proceed,
|
bool proceed,
|
||||||
bool* proceed_to_fire_unload) OVERRIDE;
|
bool* proceed_to_fire_unload) OVERRIDE;
|
||||||
|
virtual void MoveContents(content::WebContents* source,
|
||||||
|
const gfx::Rect& pos) OVERRIDE;
|
||||||
virtual void CloseContents(content::WebContents* source) OVERRIDE;
|
virtual void CloseContents(content::WebContents* source) OVERRIDE;
|
||||||
|
virtual bool IsPopupOrPanel(
|
||||||
|
const content::WebContents* source) const OVERRIDE;
|
||||||
|
|
||||||
// Implementations of content::WebContentsObserver.
|
// Implementations of content::WebContentsObserver.
|
||||||
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
||||||
|
|
Loading…
Reference in a new issue