OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // TODO(satorux): | 5 // TODO(satorux): |
6 // - Implement a scroll bar or an indicator showing where you are in the | 6 // - Implement a scroll bar or an indicator showing where you are in the |
7 // candidate window. | 7 // candidate window. |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <string> | 10 #include <string> |
(...skipping 1034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1045 // Create the candidate window controller. | 1045 // Create the candidate window controller. |
1046 chromeos::CandidateWindowController controller; | 1046 chromeos::CandidateWindowController controller; |
1047 controller.Init(); | 1047 controller.Init(); |
1048 | 1048 |
1049 // Start the main loop. | 1049 // Start the main loop. |
1050 views::AcceleratorHandler accelerator_handler; | 1050 views::AcceleratorHandler accelerator_handler; |
1051 MessageLoopForUI::current()->Run(&accelerator_handler); | 1051 MessageLoopForUI::current()->Run(&accelerator_handler); |
1052 | 1052 |
1053 return 0; | 1053 return 0; |
1054 } | 1054 } |
OLD | NEW |