| 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_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 void OnImeConfirmComposition(const base::string16& text, | 476 void OnImeConfirmComposition(const base::string16& text, |
| 477 const gfx::Range& replacement_range, | 477 const gfx::Range& replacement_range, |
| 478 bool keep_selection) override; | 478 bool keep_selection) override; |
| 479 void OnOrientationChange() override; | 479 void OnOrientationChange() override; |
| 480 ui::TextInputType GetTextInputType() override; | 480 ui::TextInputType GetTextInputType() override; |
| 481 void GetSelectionBounds(gfx::Rect* start, gfx::Rect* end) override; | 481 void GetSelectionBounds(gfx::Rect* start, gfx::Rect* end) override; |
| 482 void GetCompositionCharacterBounds( | 482 void GetCompositionCharacterBounds( |
| 483 std::vector<gfx::Rect>* character_bounds_in_window) override; | 483 std::vector<gfx::Rect>* character_bounds_in_window) override; |
| 484 void GetCompositionRange(gfx::Range* range) override; | 484 void GetCompositionRange(gfx::Range* range) override; |
| 485 bool CanComposeInline() override; | 485 bool CanComposeInline() override; |
| 486 void DidCommitCompositorFrame() override; | |
| 487 void DidCompletePageScaleAnimation() override; | 486 void DidCompletePageScaleAnimation() override; |
| 488 void OnDeviceScaleFactorChanged() override; | 487 void OnDeviceScaleFactorChanged() override; |
| 489 | 488 |
| 490 RenderViewImpl(CompositorDependencies* compositor_deps, | 489 RenderViewImpl(CompositorDependencies* compositor_deps, |
| 491 const ViewMsg_New_Params& params); | 490 const ViewMsg_New_Params& params); |
| 492 | 491 |
| 493 void Initialize(const ViewMsg_New_Params& params, | 492 void Initialize(const ViewMsg_New_Params& params, |
| 494 bool was_created_by_renderer); | 493 bool was_created_by_renderer); |
| 495 void SetScreenMetricsEmulationParameters( | 494 void SetScreenMetricsEmulationParameters( |
| 496 bool enabled, | 495 bool enabled, |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1020 // use the Observer interface to filter IPC messages and receive frame change | 1019 // use the Observer interface to filter IPC messages and receive frame change |
| 1021 // notifications. | 1020 // notifications. |
| 1022 // --------------------------------------------------------------------------- | 1021 // --------------------------------------------------------------------------- |
| 1023 | 1022 |
| 1024 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1023 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1025 }; | 1024 }; |
| 1026 | 1025 |
| 1027 } // namespace content | 1026 } // namespace content |
| 1028 | 1027 |
| 1029 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1028 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |