Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: views/window/native_window_views.cc

Issue 7054052: Move more from Window onto Widget. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « views/window/native_window_views.h ('k') | views/window/native_window_win.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « views/window/native_window_views.h ('k') | views/window/native_window_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698