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

Side by Side Diff: views/widget/native_widget_aura.cc

Issue 8136005: Makes visbility inherited. That is, in order for a window to be (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to trunk Created 9 years, 2 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/view_unittest.cc ('k') | no next file » | 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/widget/native_widget_aura.h" 5 #include "views/widget/native_widget_aura.h"
6 6
7 #include "ui/aura/desktop.h" 7 #include "ui/aura/desktop.h"
8 #include "ui/aura/event.h" 8 #include "ui/aura/event.h"
9 #include "ui/aura/window.h" 9 #include "ui/aura/window.h"
10 #include "ui/gfx/canvas.h" 10 #include "ui/gfx/canvas.h"
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 const gfx::Rect& restored_bounds) { 276 const gfx::Rect& restored_bounds) {
277 NOTIMPLEMENTED(); 277 NOTIMPLEMENTED();
278 } 278 }
279 279
280 void NativeWidgetAura::ShowWithWindowState(ui::WindowShowState state) { 280 void NativeWidgetAura::ShowWithWindowState(ui::WindowShowState state) {
281 window_->Show(); 281 window_->Show();
282 NOTIMPLEMENTED(); 282 NOTIMPLEMENTED();
283 } 283 }
284 284
285 bool NativeWidgetAura::IsVisible() const { 285 bool NativeWidgetAura::IsVisible() const {
286 return window_->visible(); 286 return window_->IsVisible();
287 } 287 }
288 288
289 void NativeWidgetAura::Activate() { 289 void NativeWidgetAura::Activate() {
290 NOTIMPLEMENTED(); 290 NOTIMPLEMENTED();
291 } 291 }
292 292
293 void NativeWidgetAura::Deactivate() { 293 void NativeWidgetAura::Deactivate() {
294 NOTIMPLEMENTED(); 294 NOTIMPLEMENTED();
295 } 295 }
296 296
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 } 542 }
543 543
544 // static 544 // static
545 bool NativeWidgetPrivate::IsMouseButtonDown() { 545 bool NativeWidgetPrivate::IsMouseButtonDown() {
546 NOTIMPLEMENTED(); 546 NOTIMPLEMENTED();
547 return false; 547 return false;
548 } 548 }
549 549
550 } // namespace internal 550 } // namespace internal
551 } // namespace views 551 } // namespace views
OLDNEW
« no previous file with comments | « views/view_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698