| Index: content/browser/renderer_host/render_view_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h
|
| index 051a0edc853d4a30cd1bf7210b5b4c213ccce412..1ee44836321262551be3656112928a4cc2d77657 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.h
|
| +++ b/content/browser/renderer_host/render_view_host_impl.h
|
| @@ -422,6 +422,14 @@ class CONTENT_EXPORT RenderViewHostImpl
|
| return accessibility_tree_;
|
| }
|
|
|
| + // Set accessibility callbacks.
|
| + void SetAccessibilityLayoutCompleteCallbackForTesting(
|
| + const base::Closure& callback);
|
| + void SetAccessibilityLoadCompleteCallbackForTesting(
|
| + const base::Closure& callback);
|
| + void SetAccessibilityOtherCallbackForTesting(
|
| + const base::Closure& callback);
|
| +
|
| bool is_waiting_for_unload_ack_for_testing() {
|
| return is_waiting_for_unload_ack_;
|
| }
|
| @@ -647,6 +655,11 @@ class CONTENT_EXPORT RenderViewHostImpl
|
| // callbacks.
|
| std::map<int, JavascriptResultCallback> javascript_callbacks_;
|
|
|
| + // Accessibility callbacks.
|
| + base::Closure accessibility_layout_callback_;
|
| + base::Closure accessibility_load_callback_;
|
| + base::Closure accessibility_other_callback_;
|
| +
|
| // True if the render view can be shut down suddenly.
|
| bool sudden_termination_allowed_;
|
|
|
|
|