| 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 // the current view has focus. Defaults to false. | 680 // the current view has focus. Defaults to false. |
| 681 bool set_focus_on_mouse_down_or_key_event_; | 681 bool set_focus_on_mouse_down_or_key_event_; |
| 682 | 682 |
| 683 float device_scale_factor_; | 683 float device_scale_factor_; |
| 684 | 684 |
| 685 // Allows tests to send gesture events for testing without first sending a | 685 // Allows tests to send gesture events for testing without first sending a |
| 686 // corresponding touch sequence, as would be required by | 686 // corresponding touch sequence, as would be required by |
| 687 // RenderWidgetHostInputEventRouter. | 687 // RenderWidgetHostInputEventRouter. |
| 688 bool disable_input_event_router_for_testing_; | 688 bool disable_input_event_router_for_testing_; |
| 689 | 689 |
| 690 // The routing and process IDs for the last RenderWidgetHost which had a |
| 691 // TextInputState of non-NONE. |
| 692 int32_t last_active_widget_process_id_; |
| 693 int32_t last_active_widget_routing_id_; |
| 694 |
| 690 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 695 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 691 | 696 |
| 692 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 697 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 693 }; | 698 }; |
| 694 | 699 |
| 695 } // namespace content | 700 } // namespace content |
| 696 | 701 |
| 697 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 702 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |