| Index: views/window/native_window_views.cc
|
| ===================================================================
|
| --- views/window/native_window_views.cc (revision 86938)
|
| +++ views/window/native_window_views.cc (working copy)
|
| @@ -92,6 +92,48 @@
|
| GetView()->SetBoundsRect(bounds);
|
| }
|
|
|
| +void NativeWindowViews::HideWindow() {
|
| + GetView()->SetVisible(false);
|
| +}
|
| +
|
| +void NativeWindowViews::Activate() {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void NativeWindowViews::Deactivate() {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void NativeWindowViews::Maximize() {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void NativeWindowViews::Minimize() {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void NativeWindowViews::Restore() {
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +bool NativeWindowViews::IsActive() const {
|
| + return NativeWidgetViews::IsActive();
|
| +}
|
| +
|
| +bool NativeWindowViews::IsVisible() const {
|
| + return GetView()->IsVisible();
|
| +}
|
| +
|
| +bool NativeWindowViews::IsMaximized() const {
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| +}
|
| +
|
| +bool NativeWindowViews::IsMinimized() const {
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| +}
|
| +
|
| void NativeWindowViews::SetFullscreen(bool fullscreen) {
|
| }
|
|
|
| @@ -100,6 +142,9 @@
|
| return false;
|
| }
|
|
|
| +void NativeWindowViews::SetAlwaysOnTop(bool always_on_top) {
|
| +}
|
| +
|
| void NativeWindowViews::SetUseDragFrame(bool use_drag_frame) {
|
| }
|
|
|
| @@ -110,6 +155,10 @@
|
| void NativeWindowViews::UpdateFrameAfterFrameChange() {
|
| }
|
|
|
| +gfx::NativeWindow NativeWindowViews::GetNativeWindow() const {
|
| + return NULL;
|
| +}
|
| +
|
| bool NativeWindowViews::ShouldUseNativeFrame() const {
|
| NOTIMPLEMENTED();
|
| return false;
|
|
|