| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_RENDERER_RENDERER_ACCESSIBILITY_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_ACCESSIBILITY_H_ |
| 6 #define CONTENT_RENDERER_RENDERER_ACCESSIBILITY_H_ | 6 #define CONTENT_RENDERER_RENDERER_ACCESSIBILITY_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 // TODO(dmazzoni): remove once https://bugs.webkit.org/show_bug.cgi?id=73460 | 113 // TODO(dmazzoni): remove once https://bugs.webkit.org/show_bug.cgi?id=73460 |
| 114 // is fixed. | 114 // is fixed. |
| 115 gfx::Size last_scroll_offset_; | 115 gfx::Size last_scroll_offset_; |
| 116 | 116 |
| 117 // Set if we are waiting for an accessibility notification ack. | 117 // Set if we are waiting for an accessibility notification ack. |
| 118 bool ack_pending_; | 118 bool ack_pending_; |
| 119 | 119 |
| 120 // True if verbose logging of accessibility events is on. | 120 // True if verbose logging of accessibility events is on. |
| 121 bool logging_; | 121 bool logging_; |
| 122 | 122 |
| 123 // True if we've sent a load complete notification for this page already. | |
| 124 bool sent_load_complete_; | |
| 125 | |
| 126 DISALLOW_COPY_AND_ASSIGN(RendererAccessibility); | 123 DISALLOW_COPY_AND_ASSIGN(RendererAccessibility); |
| 127 }; | 124 }; |
| 128 | 125 |
| 129 #endif // CONTENT_RENDERER_RENDERER_ACCESSIBILITY_H_ | 126 #endif // CONTENT_RENDERER_RENDERER_ACCESSIBILITY_H_ |
| OLD | NEW |