OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "views/window/native_window_views.h" | 5 #include "views/window/native_window_views.h" |
6 | 6 |
7 #include "views/view.h" | 7 #include "views/view.h" |
8 | 8 |
9 namespace views { | 9 namespace views { |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 } | 32 } |
33 | 33 |
34 NativeWidget* NativeWindowViews::AsNativeWidget() { | 34 NativeWidget* NativeWindowViews::AsNativeWidget() { |
35 return this; | 35 return this; |
36 } | 36 } |
37 | 37 |
38 const NativeWidget* NativeWindowViews::AsNativeWidget() const { | 38 const NativeWidget* NativeWindowViews::AsNativeWidget() const { |
39 return this; | 39 return this; |
40 } | 40 } |
41 | 41 |
42 gfx::Rect NativeWindowViews::GetRestoredBounds() const { | |
43 NOTIMPLEMENTED(); | |
44 return GetView()->bounds(); | |
45 } | |
46 | |
47 void NativeWindowViews::ShowNativeWindow(ShowState state) { | |
48 NOTIMPLEMENTED(); | |
49 GetView()->SetVisible(true); | |
50 } | |
51 | |
52 void NativeWindowViews::BecomeModal() { | 42 void NativeWindowViews::BecomeModal() { |
53 NOTIMPLEMENTED(); | 43 NOTIMPLEMENTED(); |
54 } | 44 } |
55 | 45 |
56 | |
57 void NativeWindowViews::EnableClose(bool enable) { | |
58 } | |
59 | |
60 } // namespace views | 46 } // namespace views |
OLD | NEW |