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

Side by Side Diff: ui/views/examples/examples_main.cc

Issue 8566052: views: Delete bubble, events, focus, layout directories and its stubbed files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win 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/examples/double_split_view_example.cc ('k') | ui/views/examples/link_example.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 "ui/views/examples/examples_main.h" 5 #include "ui/views/examples/examples_main.h"
6 6
7 #include "base/at_exit.h" 7 #include "base/at_exit.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/i18n/icu_util.h" 9 #include "base/i18n/icu_util.h"
10 #include "base/process_util.h" 10 #include "base/process_util.h"
(...skipping 14 matching lines...) Expand all
25 #include "ui/views/examples/progress_bar_example.h" 25 #include "ui/views/examples/progress_bar_example.h"
26 #include "ui/views/examples/radio_button_example.h" 26 #include "ui/views/examples/radio_button_example.h"
27 #include "ui/views/examples/scroll_view_example.h" 27 #include "ui/views/examples/scroll_view_example.h"
28 #include "ui/views/examples/single_split_view_example.h" 28 #include "ui/views/examples/single_split_view_example.h"
29 #include "ui/views/examples/tabbed_pane_example.h" 29 #include "ui/views/examples/tabbed_pane_example.h"
30 #include "ui/views/examples/table2_example.h" 30 #include "ui/views/examples/table2_example.h"
31 #include "ui/views/examples/text_example.h" 31 #include "ui/views/examples/text_example.h"
32 #include "ui/views/examples/textfield_example.h" 32 #include "ui/views/examples/textfield_example.h"
33 #include "ui/views/examples/throbber_example.h" 33 #include "ui/views/examples/throbber_example.h"
34 #include "ui/views/examples/widget_example.h" 34 #include "ui/views/examples/widget_example.h"
35 #include "ui/views/focus/accelerator_handler.h"
36 #include "ui/views/layout/grid_layout.h"
35 #include "ui/views/test/test_views_delegate.h" 37 #include "ui/views/test/test_views_delegate.h"
36 #include "views/controls/button/text_button.h" 38 #include "views/controls/button/text_button.h"
37 #include "views/controls/label.h" 39 #include "views/controls/label.h"
38 #include "views/controls/tabbed_pane/tabbed_pane.h" 40 #include "views/controls/tabbed_pane/tabbed_pane.h"
39 #include "views/focus/accelerator_handler.h"
40 #include "views/layout/grid_layout.h"
41 #include "views/widget/widget.h" 41 #include "views/widget/widget.h"
42 42
43 #if defined(OS_WIN) 43 #if defined(OS_WIN)
44 // TableView is not yet ported to Linux. 44 // TableView is not yet ported to Linux.
45 #include "ui/views/examples/table_example.h" 45 #include "ui/views/examples/table_example.h"
46 #endif 46 #endif
47 47
48 namespace examples { 48 namespace examples {
49 49
50 ExamplesMain::ExamplesMain() 50 ExamplesMain::ExamplesMain()
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 main.Init(); 187 main.Init();
188 188
189 views::AcceleratorHandler accelerator_handler; 189 views::AcceleratorHandler accelerator_handler;
190 MessageLoopForUI::current()->RunWithDispatcher(&accelerator_handler); 190 MessageLoopForUI::current()->RunWithDispatcher(&accelerator_handler);
191 191
192 #if defined(OS_WIN) 192 #if defined(OS_WIN)
193 OleUninitialize(); 193 OleUninitialize();
194 #endif 194 #endif
195 return 0; 195 return 0;
196 } 196 }
OLDNEW
« no previous file with comments | « ui/views/examples/double_split_view_example.cc ('k') | ui/views/examples/link_example.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698