| Index: webkit/glue/webaccessibility.h
|
| diff --git a/webkit/glue/webaccessibility.h b/webkit/glue/webaccessibility.h
|
| index 3b6df7a065bbca1d39ce89f0109e998d1d80e990..2b5f9289a84f787acab568563a1307edbd578222 100644
|
| --- a/webkit/glue/webaccessibility.h
|
| +++ b/webkit/glue/webaccessibility.h
|
| @@ -259,6 +259,10 @@ struct WEBKIT_GLUE_EXPORT WebAccessibility {
|
|
|
| ~WebAccessibility();
|
|
|
| + // Initialize an already-created struct, same as the constructor above.
|
| + void Init(const WebKit::WebAccessibilityObject& src,
|
| + bool include_children);
|
| +
|
| #ifndef NDEBUG
|
| std::string DebugString(bool recursive,
|
| int render_routing_id,
|
| @@ -266,10 +270,6 @@ struct WEBKIT_GLUE_EXPORT WebAccessibility {
|
| #endif
|
|
|
| private:
|
| - // Initialize an already-created struct, same as the constructor above.
|
| - void Init(const WebKit::WebAccessibilityObject& src,
|
| - bool include_children);
|
| -
|
| // Returns true if |ancestor| is the first unignored parent of |child|,
|
| // which means that when walking up the parent chain from |child|,
|
| // |ancestor| is the *first* ancestor that isn't marked as
|
|
|