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

Side by Side Diff: ui/views/widget/desktop_root_window_host_linux.cc

Issue 10911317: KeyEvent work. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "ui/views/widget/desktop_root_window_host_linux.h" 5 #include "ui/views/widget/desktop_root_window_host_linux.h"
6 6
7 #include "ui/aura/root_window.h" 7 #include "ui/aura/root_window.h"
8 8
9 namespace views { 9 namespace views {
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 NOTIMPLEMENTED(); 53 NOTIMPLEMENTED();
54 return true; 54 return true;
55 } 55 }
56 56
57 gfx::Rect DesktopRootWindowHostLinux::GetClientAreaBoundsInScreen() const { 57 gfx::Rect DesktopRootWindowHostLinux::GetClientAreaBoundsInScreen() const {
58 // TODO(erg): 58 // TODO(erg):
59 NOTIMPLEMENTED(); 59 NOTIMPLEMENTED();
60 return gfx::Rect(100, 100); 60 return gfx::Rect(100, 100);
61 } 61 }
62 62
63 InputMethod* DesktopRootWindowHostLinux::CreateInputMethod() {
64 // TODO(erg):
65 NOTIMPLEMENTED();
66 return NULL;
67 }
68
69 internal::InputMethodDelegate*
70 DesktopRootWindowHostLinux::GetInputMethodDelegate() {
71 // TODO(erg):
72 NOTIMPLEMENTED();
73 return NULL;
74 }
75
63 //////////////////////////////////////////////////////////////////////////////// 76 ////////////////////////////////////////////////////////////////////////////////
64 // DesktopRootWindowHost, public: 77 // DesktopRootWindowHost, public:
65 78
66 // static 79 // static
67 DesktopRootWindowHost* DesktopRootWindowHost::Create( 80 DesktopRootWindowHost* DesktopRootWindowHost::Create(
68 internal::NativeWidgetDelegate* native_widget_delegate, 81 internal::NativeWidgetDelegate* native_widget_delegate,
69 const gfx::Rect& initial_bounds) { 82 const gfx::Rect& initial_bounds) {
70 return new DesktopRootWindowHostLinux; 83 return new DesktopRootWindowHostLinux;
71 } 84 }
72 85
73 } // namespace views 86 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/widget/desktop_root_window_host_linux.h ('k') | ui/views/widget/desktop_root_window_host_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698