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 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <atlbase.h> | 9 #include <atlbase.h> |
10 #include <atlapp.h> | 10 #include <atlapp.h> |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 | 345 |
346 // Registrar so we can listen to RENDERER_PROCESS_TERMINATED events. | 346 // Registrar so we can listen to RENDERER_PROCESS_TERMINATED events. |
347 NotificationRegistrar registrar_; | 347 NotificationRegistrar registrar_; |
348 | 348 |
349 // Stores the current text input type received by ImeUpdateTextInputState() | 349 // Stores the current text input type received by ImeUpdateTextInputState() |
350 // method. | 350 // method. |
351 WebKit::WebTextInputType text_input_type_; | 351 WebKit::WebTextInputType text_input_type_; |
352 | 352 |
353 ScopedVector<ui::ViewProp> props_; | 353 ScopedVector<ui::ViewProp> props_; |
354 | 354 |
| 355 scoped_ptr<ui::ViewProp> accessibility_prop_; |
| 356 |
355 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 357 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
356 }; | 358 }; |
357 | 359 |
358 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 360 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
OLD | NEW |