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

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

Issue 8598031: views: Move widget/ directory to ui/views. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reland for real Created 9 years, 1 month 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 | « ui/views/widget/native_widget_aura.h ('k') | ui/views/widget/native_widget_delegate.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/widget/native_widget_aura.h" 5 #include "ui/views/widget/native_widget_aura.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 #include "ui/aura/client/aura_constants.h" 9 #include "ui/aura/client/aura_constants.h"
10 #include "ui/aura/client/drag_drop_client.h" 10 #include "ui/aura/client/drag_drop_client.h"
11 #include "ui/aura/client/shadow_types.h" 11 #include "ui/aura/client/shadow_types.h"
12 #include "ui/aura/desktop.h" 12 #include "ui/aura/desktop.h"
13 #include "ui/aura/desktop_observer.h" 13 #include "ui/aura/desktop_observer.h"
14 #include "ui/aura/event.h" 14 #include "ui/aura/event.h"
15 #include "ui/aura/window.h" 15 #include "ui/aura/window.h"
16 #include "ui/aura/window_types.h" 16 #include "ui/aura/window_types.h"
17 #include "ui/base/dragdrop/os_exchange_data.h" 17 #include "ui/base/dragdrop/os_exchange_data.h"
18 #include "ui/base/ui_base_types.h" 18 #include "ui/base/ui_base_types.h"
19 #include "ui/gfx/canvas.h" 19 #include "ui/gfx/canvas.h"
20 #include "ui/gfx/compositor/layer.h" 20 #include "ui/gfx/compositor/layer.h"
21 #include "ui/gfx/font.h" 21 #include "ui/gfx/font.h"
22 #include "ui/gfx/screen.h" 22 #include "ui/gfx/screen.h"
23 #include "views/widget/drop_helper.h" 23 #include "ui/views/widget/drop_helper.h"
24 #include "views/widget/native_widget_delegate.h" 24 #include "ui/views/widget/native_widget_delegate.h"
25 #include "views/widget/tooltip_manager_views.h" 25 #include "ui/views/widget/tooltip_manager_views.h"
26 26
27 #if defined(OS_WIN) 27 #if defined(OS_WIN)
28 #include "base/win/scoped_gdi_object.h" 28 #include "base/win/scoped_gdi_object.h"
29 #include "base/win/win_util.h" 29 #include "base/win/win_util.h"
30 #include "ui/base/l10n/l10n_util_win.h" 30 #include "ui/base/l10n/l10n_util_win.h"
31 #endif 31 #endif
32 32
33 #if defined(HAVE_IBUS) 33 #if defined(HAVE_IBUS)
34 #include "ui/views/ime/input_method_ibus.h" 34 #include "ui/views/ime/input_method_ibus.h"
35 #else 35 #else
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
791 NOTIMPLEMENTED(); 791 NOTIMPLEMENTED();
792 } 792 }
793 793
794 // static 794 // static
795 bool NativeWidgetPrivate::IsMouseButtonDown() { 795 bool NativeWidgetPrivate::IsMouseButtonDown() {
796 return aura::Desktop::GetInstance()->IsMouseButtonDown(); 796 return aura::Desktop::GetInstance()->IsMouseButtonDown();
797 } 797 }
798 798
799 } // namespace internal 799 } // namespace internal
800 } // namespace views 800 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/widget/native_widget_aura.h ('k') | ui/views/widget/native_widget_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698