OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 9 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 bool has_horizontal_scrollbar) OVERRIDE; | 119 bool has_horizontal_scrollbar) OVERRIDE; |
120 virtual void SetScrollOffsetPinning( | 120 virtual void SetScrollOffsetPinning( |
121 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; | 121 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; |
122 #if defined(USE_AURA) | 122 #if defined(USE_AURA) |
123 virtual void ProcessAckedTouchEvent( | 123 virtual void ProcessAckedTouchEvent( |
124 const TouchEventWithLatencyInfo& touch, | 124 const TouchEventWithLatencyInfo& touch, |
125 InputEventAckState ack_result) OVERRIDE; | 125 InputEventAckState ack_result) OVERRIDE; |
126 #endif // defined(USE_AURA) | 126 #endif // defined(USE_AURA) |
127 virtual bool LockMouse() OVERRIDE; | 127 virtual bool LockMouse() OVERRIDE; |
128 virtual void UnlockMouse() OVERRIDE; | 128 virtual void UnlockMouse() OVERRIDE; |
| 129 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; |
129 | 130 |
130 #if defined(OS_MACOSX) | 131 #if defined(OS_MACOSX) |
131 // RenderWidgetHostView implementation. | 132 // RenderWidgetHostView implementation. |
132 virtual void SetActive(bool active) OVERRIDE; | 133 virtual void SetActive(bool active) OVERRIDE; |
133 virtual void SetTakesFocusOnlyOnMouseDown(bool flag) OVERRIDE; | 134 virtual void SetTakesFocusOnlyOnMouseDown(bool flag) OVERRIDE; |
134 virtual void SetWindowVisibility(bool visible) OVERRIDE; | 135 virtual void SetWindowVisibility(bool visible) OVERRIDE; |
135 virtual void WindowFrameChanged() OVERRIDE; | 136 virtual void WindowFrameChanged() OVERRIDE; |
136 virtual void ShowDefinitionForSelection() OVERRIDE; | 137 virtual void ShowDefinitionForSelection() OVERRIDE; |
137 virtual bool SupportsSpeech() const OVERRIDE; | 138 virtual bool SupportsSpeech() const OVERRIDE; |
138 virtual void SpeakSelection() OVERRIDE; | 139 virtual void SpeakSelection() OVERRIDE; |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 // sent through it are routed to the embedding renderer process. | 171 // sent through it are routed to the embedding renderer process. |
171 CrossProcessFrameConnector* frame_connector_; | 172 CrossProcessFrameConnector* frame_connector_; |
172 | 173 |
173 private: | 174 private: |
174 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); | 175 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); |
175 }; | 176 }; |
176 | 177 |
177 } // namespace content | 178 } // namespace content |
178 | 179 |
179 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 180 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
OLD | NEW |