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

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

Issue 8497067: views: Remove the old views/window/ directory and its stubbed files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « views/widget/widget.h ('k') | views/widget/widget_delegate.cc » ('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/widget.h" 5 #include "views/widget/widget.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
10 #include "ui/base/hit_test.h" 10 #include "ui/base/hit_test.h"
11 #include "ui/base/l10n/l10n_font_util.h" 11 #include "ui/base/l10n/l10n_font_util.h"
12 #include "ui/base/resource/resource_bundle.h" 12 #include "ui/base/resource/resource_bundle.h"
13 #include "ui/gfx/compositor/compositor.h" 13 #include "ui/gfx/compositor/compositor.h"
14 #include "ui/gfx/compositor/layer.h" 14 #include "ui/gfx/compositor/layer.h"
15 #include "ui/gfx/screen.h" 15 #include "ui/gfx/screen.h"
16 #include "ui/views/window/custom_frame_view.h"
16 #include "views/controls/menu/menu_controller.h" 17 #include "views/controls/menu/menu_controller.h"
17 #include "views/focus/focus_manager.h" 18 #include "views/focus/focus_manager.h"
18 #include "views/focus/focus_manager_factory.h" 19 #include "views/focus/focus_manager_factory.h"
19 #include "views/focus/view_storage.h" 20 #include "views/focus/view_storage.h"
20 #include "views/focus/widget_focus_manager.h" 21 #include "views/focus/widget_focus_manager.h"
21 #include "views/ime/input_method.h" 22 #include "views/ime/input_method.h"
22 #include "views/views_delegate.h" 23 #include "views/views_delegate.h"
23 #include "views/widget/default_theme_provider.h" 24 #include "views/widget/default_theme_provider.h"
24 #include "views/widget/native_widget_private.h" 25 #include "views/widget/native_widget_private.h"
25 #include "views/widget/root_view.h" 26 #include "views/widget/root_view.h"
26 #include "views/widget/tooltip_manager.h" 27 #include "views/widget/tooltip_manager.h"
27 #include "views/widget/widget_delegate.h" 28 #include "views/widget/widget_delegate.h"
28 #include "views/window/custom_frame_view.h"
29 29
30 namespace { 30 namespace {
31 31
32 // Set to true if a pure Views implementation is preferred 32 // Set to true if a pure Views implementation is preferred
33 bool use_pure_views = false; 33 bool use_pure_views = false;
34 34
35 // True to enable debug paint that indicates where to be painted. 35 // True to enable debug paint that indicates where to be painted.
36 bool debug_paint = false; 36 bool debug_paint = false;
37 37
38 } // namespace 38 } // namespace
(...skipping 1171 matching lines...) Expand 10 before | Expand all | Expand 10 after
1210 1210
1211 //////////////////////////////////////////////////////////////////////////////// 1211 ////////////////////////////////////////////////////////////////////////////////
1212 // internal::NativeWidgetPrivate, NativeWidget implementation: 1212 // internal::NativeWidgetPrivate, NativeWidget implementation:
1213 1213
1214 internal::NativeWidgetPrivate* NativeWidgetPrivate::AsNativeWidgetPrivate() { 1214 internal::NativeWidgetPrivate* NativeWidgetPrivate::AsNativeWidgetPrivate() {
1215 return this; 1215 return this;
1216 } 1216 }
1217 1217
1218 } // namespace internal 1218 } // namespace internal
1219 } // namespace views 1219 } // namespace views
OLDNEW
« no previous file with comments | « views/widget/widget.h ('k') | views/widget/widget_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698