| OLD | NEW |
| 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 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_WINDOW_CONTROLLER_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_WINDOW_CONTROLLER_IMPL_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_WINDOW_CONTROLLER_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_WINDOW_CONTROLLER_IMPL_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/chromeos/input_method/candidate_window_controller.h" | 8 #include "chrome/browser/chromeos/input_method/candidate_window_controller.h" |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
| 12 #include "ui/base/ime/chromeos/ime_bridge.h" | 12 #include "ui/base/ime/chromeos/ime_bridge.h" |
| 13 #include "ui/base/ime/infolist_entry.h" | 13 #include "ui/base/ime/infolist_entry.h" |
| 14 #include "ui/chromeos/ime/candidate_window_view.h" | 14 #include "ui/chromeos/ime/view/candidate_window_view.h" |
| 15 #include "ui/views/widget/widget_observer.h" | 15 #include "ui/views/widget/widget_observer.h" |
| 16 | 16 |
| 17 namespace ui { | 17 namespace ui { |
| 18 class CandidateWindow; | 18 class CandidateWindow; |
| 19 | 19 |
| 20 namespace ime { | 20 namespace ime { |
| 21 class InfolistWindow; | 21 class InfolistWindow; |
| 22 } // namespace ime | 22 } // namespace ime |
| 23 } // namespace ui | 23 } // namespace ui |
| 24 | 24 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 | 93 |
| 94 ObserverList<CandidateWindowController::Observer> observers_; | 94 ObserverList<CandidateWindowController::Observer> observers_; |
| 95 | 95 |
| 96 DISALLOW_COPY_AND_ASSIGN(CandidateWindowControllerImpl); | 96 DISALLOW_COPY_AND_ASSIGN(CandidateWindowControllerImpl); |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_WINDOW_CONTROLLER_IMPL
_H_ | 99 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_WINDOW_CONTROLLER_IMPL
_H_ |
| 100 | 100 |
| 101 } // namespace input_method | 101 } // namespace input_method |
| 102 } // namespace chromeos | 102 } // namespace chromeos |
| OLD | NEW |