| 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_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 RenderWidgetHostViewBase* updated_view, | 434 RenderWidgetHostViewBase* updated_view, |
| 435 bool did_update_state) override; | 435 bool did_update_state) override; |
| 436 void OnImeCancelComposition(TextInputManager* text_input_manager, | 436 void OnImeCancelComposition(TextInputManager* text_input_manager, |
| 437 RenderWidgetHostViewBase* updated_view) override; | 437 RenderWidgetHostViewBase* updated_view) override; |
| 438 void OnSelectionBoundsChanged( | 438 void OnSelectionBoundsChanged( |
| 439 TextInputManager* text_input_manager, | 439 TextInputManager* text_input_manager, |
| 440 RenderWidgetHostViewBase* updated_view) override; | 440 RenderWidgetHostViewBase* updated_view) override; |
| 441 void OnTextSelectionChanged(TextInputManager* text_input_mangager, | 441 void OnTextSelectionChanged(TextInputManager* text_input_mangager, |
| 442 RenderWidgetHostViewBase* updated_view) override; | 442 RenderWidgetHostViewBase* updated_view) override; |
| 443 | 443 |
| 444 void OnBeginFrame(const cc::BeginFrameArgs& args); | 444 void OnBeginFrame(); |
| 445 | 445 |
| 446 // Detaches |this| from the input method object. | 446 // Detaches |this| from the input method object. |
| 447 void DetachFromInputMethod(); | 447 void DetachFromInputMethod(); |
| 448 | 448 |
| 449 // Dismisses a Web Popup on a mouse or touch press outside the popup and its | 449 // Dismisses a Web Popup on a mouse or touch press outside the popup and its |
| 450 // parent. | 450 // parent. |
| 451 void ApplyEventFilterForPopupExit(ui::LocatedEvent* event); | 451 void ApplyEventFilterForPopupExit(ui::LocatedEvent* event); |
| 452 | 452 |
| 453 // Converts |rect| from screen coordinate to window coordinate. | 453 // Converts |rect| from screen coordinate to window coordinate. |
| 454 gfx::Rect ConvertRectFromScreen(const gfx::Rect& rect) const; | 454 gfx::Rect ConvertRectFromScreen(const gfx::Rect& rect) const; |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 cc::LocalSurfaceId local_surface_id_; | 598 cc::LocalSurfaceId local_surface_id_; |
| 599 | 599 |
| 600 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 600 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 601 | 601 |
| 602 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 602 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 603 }; | 603 }; |
| 604 | 604 |
| 605 } // namespace content | 605 } // namespace content |
| 606 | 606 |
| 607 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 607 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |