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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 // RenderWidgetHostViewPort implementation. | 146 // RenderWidgetHostViewPort implementation. |
147 virtual bool PostProcessEventForPluginIme( | 147 virtual bool PostProcessEventForPluginIme( |
148 const NativeWebKeyboardEvent& event) OVERRIDE; | 148 const NativeWebKeyboardEvent& event) OVERRIDE; |
149 #endif // defined(OS_MACOSX) | 149 #endif // defined(OS_MACOSX) |
150 | 150 |
151 #if defined(OS_ANDROID) | 151 #if defined(OS_ANDROID) |
152 // RenderWidgetHostViewPort implementation. | 152 // RenderWidgetHostViewPort implementation. |
153 virtual void ShowDisambiguationPopup( | 153 virtual void ShowDisambiguationPopup( |
154 const gfx::Rect& target_rect, | 154 const gfx::Rect& target_rect, |
155 const SkBitmap& zoomed_bitmap) OVERRIDE; | 155 const SkBitmap& zoomed_bitmap) OVERRIDE; |
156 virtual void HasTouchEventHandlers(bool need_touch_events) OVERRIDE; | |
157 #endif // defined(OS_ANDROID) | 156 #endif // defined(OS_ANDROID) |
158 | 157 |
159 #if defined(TOOLKIT_GTK) | 158 #if defined(TOOLKIT_GTK) |
160 virtual GdkEventButton* GetLastMouseDown() OVERRIDE; | 159 virtual GdkEventButton* GetLastMouseDown() OVERRIDE; |
161 virtual gfx::NativeView BuildInputMethodsGtkMenu() OVERRIDE; | 160 virtual gfx::NativeView BuildInputMethodsGtkMenu() OVERRIDE; |
162 #endif // defined(TOOLKIT_GTK) | 161 #endif // defined(TOOLKIT_GTK) |
163 | 162 |
164 #if defined(OS_WIN) | 163 #if defined(OS_WIN) |
165 virtual void SetParentNativeViewAccessible( | 164 virtual void SetParentNativeViewAccessible( |
166 gfx::NativeViewAccessible accessible_parent) OVERRIDE; | 165 gfx::NativeViewAccessible accessible_parent) OVERRIDE; |
(...skipping 13 matching lines...) Expand all Loading... |
180 | 179 |
181 gfx::Size size_; | 180 gfx::Size size_; |
182 | 181 |
183 private: | 182 private: |
184 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); | 183 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); |
185 }; | 184 }; |
186 | 185 |
187 } // namespace content | 186 } // namespace content |
188 | 187 |
189 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ | 188 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ |
OLD | NEW |