| 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 <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 } // namespace ime | 23 } // namespace ime |
| 24 } // namespace ui | 24 } // namespace ui |
| 25 | 25 |
| 26 namespace views { | 26 namespace views { |
| 27 class Widget; | 27 class Widget; |
| 28 } // namespace views | 28 } // namespace views |
| 29 | 29 |
| 30 namespace chromeos { | 30 namespace chromeos { |
| 31 namespace input_method { | 31 namespace input_method { |
| 32 | 32 |
| 33 class DelayableWidget; | |
| 34 class ModeIndicatorController; | 33 class ModeIndicatorController; |
| 35 | 34 |
| 36 // The implementation of CandidateWindowController. | 35 // The implementation of CandidateWindowController. |
| 37 // CandidateWindowController controls the CandidateWindow. | 36 // CandidateWindowController controls the CandidateWindow. |
| 38 class CandidateWindowControllerImpl | 37 class CandidateWindowControllerImpl |
| 39 : public CandidateWindowController, | 38 : public CandidateWindowController, |
| 40 public ui::ime::CandidateWindowView::Observer, | 39 public ui::ime::CandidateWindowView::Observer, |
| 41 public views::WidgetObserver, | 40 public views::WidgetObserver, |
| 42 public IMECandidateWindowHandlerInterface { | 41 public IMECandidateWindowHandlerInterface { |
| 43 public: | 42 public: |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 | 91 |
| 93 base::ObserverList<CandidateWindowController::Observer> observers_; | 92 base::ObserverList<CandidateWindowController::Observer> observers_; |
| 94 | 93 |
| 95 DISALLOW_COPY_AND_ASSIGN(CandidateWindowControllerImpl); | 94 DISALLOW_COPY_AND_ASSIGN(CandidateWindowControllerImpl); |
| 96 }; | 95 }; |
| 97 | 96 |
| 98 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_WINDOW_CONTROLLER_IMPL
_H_ | 97 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_CANDIDATE_WINDOW_CONTROLLER_IMPL
_H_ |
| 99 | 98 |
| 100 } // namespace input_method | 99 } // namespace input_method |
| 101 } // namespace chromeos | 100 } // namespace chromeos |
| OLD | NEW |