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

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

Issue 7890054: Adds code for a new Aura shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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
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/event.h" 7 #include "ui/aura/event.h"
8 #include "ui/aura/window.h" 8 #include "ui/aura/window.h"
9 #include "ui/gfx/canvas.h" 9 #include "ui/gfx/canvas.h"
10 #include "ui/gfx/compositor/layer.h" 10 #include "ui/gfx/compositor/layer.h"
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 void NativeWidgetAura::FocusNativeView(gfx::NativeView native_view) { 355 void NativeWidgetAura::FocusNativeView(gfx::NativeView native_view) {
356 NOTIMPLEMENTED(); 356 NOTIMPLEMENTED();
357 } 357 }
358 358
359 bool NativeWidgetAura::ConvertPointFromAncestor(const Widget* ancestor, 359 bool NativeWidgetAura::ConvertPointFromAncestor(const Widget* ancestor,
360 gfx::Point* point) const { 360 gfx::Point* point) const {
361 NOTIMPLEMENTED(); 361 NOTIMPLEMENTED();
362 return false; 362 return false;
363 } 363 }
364 364
365 gfx::Rect NativeWidgetAura::GetWorkAreaBoundsInScreen() const {
366 return gfx::Rect();
367 }
368
369 //////////////////////////////////////////////////////////////////////////////// 365 ////////////////////////////////////////////////////////////////////////////////
370 // NativeWidgetAura, views::InputMethodDelegate implementation: 366 // NativeWidgetAura, views::InputMethodDelegate implementation:
371 367
372 void NativeWidgetAura::DispatchKeyEventPostIME(const KeyEvent& key) { 368 void NativeWidgetAura::DispatchKeyEventPostIME(const KeyEvent& key) {
373 NOTIMPLEMENTED(); 369 NOTIMPLEMENTED();
374 } 370 }
375 371
376 //////////////////////////////////////////////////////////////////////////////// 372 ////////////////////////////////////////////////////////////////////////////////
377 // NativeWidgetAura, aura::WindowDelegate implementation: 373 // NativeWidgetAura, aura::WindowDelegate implementation:
378 374
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 } 475 }
480 476
481 // static 477 // static
482 bool NativeWidgetPrivate::IsMouseButtonDown() { 478 bool NativeWidgetPrivate::IsMouseButtonDown() {
483 NOTIMPLEMENTED(); 479 NOTIMPLEMENTED();
484 return false; 480 return false;
485 } 481 }
486 482
487 } // namespace internal 483 } // namespace internal
488 } // namespace views 484 } // namespace views
OLDNEW
« ui/aura_shell/desktop_background_view.cc ('K') | « views/widget/native_widget_aura.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698