| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 | 316 |
| 317 // Called by the RenderWidgetHost when an ambiguous gesture is detected to | 317 // Called by the RenderWidgetHost when an ambiguous gesture is detected to |
| 318 // show the disambiguation popup bubble. | 318 // show the disambiguation popup bubble. |
| 319 virtual void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, | 319 virtual void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, |
| 320 const SkBitmap& zoomed_bitmap); | 320 const SkBitmap& zoomed_bitmap); |
| 321 | 321 |
| 322 // Called by the WebContentsImpl when a user tries to navigate a new page on | 322 // Called by the WebContentsImpl when a user tries to navigate a new page on |
| 323 // main frame. | 323 // main frame. |
| 324 virtual void OnDidNavigateMainFrameToNewPage(); | 324 virtual void OnDidNavigateMainFrameToNewPage(); |
| 325 | 325 |
| 326 #if defined(OS_ANDROID) | 326 #if defined(OS_ANDROID) && !defined(USE_AURA) |
| 327 // Instructs the view to not drop the surface even when the view is hidden. | 327 // Instructs the view to not drop the surface even when the view is hidden. |
| 328 virtual void LockCompositingSurface() = 0; | 328 virtual void LockCompositingSurface() = 0; |
| 329 virtual void UnlockCompositingSurface() = 0; | 329 virtual void UnlockCompositingSurface() = 0; |
| 330 #endif | 330 #endif |
| 331 | 331 |
| 332 #if defined(OS_MACOSX) | 332 #if defined(OS_MACOSX) |
| 333 // Does any event handling necessary for plugin IME; should be called after | 333 // Does any event handling necessary for plugin IME; should be called after |
| 334 // the plugin has already had a chance to process the event. If plugin IME is | 334 // the plugin has already had a chance to process the event. If plugin IME is |
| 335 // not enabled, this is a no-op, so it is always safe to call. | 335 // not enabled, this is a no-op, so it is always safe to call. |
| 336 // Returns true if the event was handled by IME. | 336 // Returns true if the event was handled by IME. |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 base::OneShotTimer<RenderWidgetHostViewBase> flush_input_timer_; | 423 base::OneShotTimer<RenderWidgetHostViewBase> flush_input_timer_; |
| 424 | 424 |
| 425 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_; | 425 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_; |
| 426 | 426 |
| 427 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); | 427 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); |
| 428 }; | 428 }; |
| 429 | 429 |
| 430 } // namespace content | 430 } // namespace content |
| 431 | 431 |
| 432 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ | 432 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
| OLD | NEW |