| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_UI_IME_IME_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_UI_IME_IME_WINDOW_H_ |
| 6 #define CHROME_BROWSER_UI_IME_IME_WINDOW_H_ | 6 #define CHROME_BROWSER_UI_IME_IME_WINDOW_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 namespace content { | 25 namespace content { |
| 26 class RenderFrameHost; | 26 class RenderFrameHost; |
| 27 class WebContents; | 27 class WebContents; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace extensions { | 30 namespace extensions { |
| 31 class Extension; | 31 class Extension; |
| 32 } | 32 } |
| 33 | 33 |
| 34 namespace gfx { | 34 namespace gfx { |
| 35 class Image; | |
| 36 class Rect; | 35 class Rect; |
| 37 } | 36 } |
| 38 | 37 |
| 39 namespace ui { | 38 namespace ui { |
| 40 | 39 |
| 41 class ImeNativeWindow; | 40 class ImeNativeWindow; |
| 42 class ImeWindowObserver; | 41 class ImeWindowObserver; |
| 43 | 42 |
| 44 // The implementation for the IME window. | 43 // The implementation for the IME window. |
| 45 // This is used in the IME extension API. | 44 // This is used in the IME extension API. |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 ImeNativeWindow* native_window_; // Weak, it does self-destruction. | 140 ImeNativeWindow* native_window_; // Weak, it does self-destruction. |
| 142 | 141 |
| 143 base::ObserverList<ImeWindowObserver> observers_; | 142 base::ObserverList<ImeWindowObserver> observers_; |
| 144 | 143 |
| 145 DISALLOW_COPY_AND_ASSIGN(ImeWindow); | 144 DISALLOW_COPY_AND_ASSIGN(ImeWindow); |
| 146 }; | 145 }; |
| 147 | 146 |
| 148 } // namespace ui | 147 } // namespace ui |
| 149 | 148 |
| 150 #endif // CHROME_BROWSER_UI_IME_IME_WINDOW_H_ | 149 #endif // CHROME_BROWSER_UI_IME_IME_WINDOW_H_ |
| OLD | NEW |