| 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 <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 int selection_start, | 491 int selection_start, |
| 492 int selection_end) override; | 492 int selection_end) override; |
| 493 void OnImeConfirmComposition(const base::string16& text, | 493 void OnImeConfirmComposition(const base::string16& text, |
| 494 const gfx::Range& replacement_range, | 494 const gfx::Range& replacement_range, |
| 495 bool keep_selection) override; | 495 bool keep_selection) override; |
| 496 void SetDeviceScaleFactor(float device_scale_factor) override; | 496 void SetDeviceScaleFactor(float device_scale_factor) override; |
| 497 bool SetDeviceColorProfile(const std::vector<char>& color_profile) override; | 497 bool SetDeviceColorProfile(const std::vector<char>& color_profile) override; |
| 498 void OnOrientationChange() override; | 498 void OnOrientationChange() override; |
| 499 ui::TextInputType GetTextInputType() override; | 499 ui::TextInputType GetTextInputType() override; |
| 500 void GetSelectionBounds(gfx::Rect* start, gfx::Rect* end) override; | 500 void GetSelectionBounds(gfx::Rect* start, gfx::Rect* end) override; |
| 501 void FocusChangeComplete() override; | 501 void ImeShownAnimationsComplete() override; |
| 502 void GetCompositionCharacterBounds( | 502 void GetCompositionCharacterBounds( |
| 503 std::vector<gfx::Rect>* character_bounds) override; | 503 std::vector<gfx::Rect>* character_bounds) override; |
| 504 void GetCompositionRange(gfx::Range* range) override; | 504 void GetCompositionRange(gfx::Range* range) override; |
| 505 bool CanComposeInline() override; | 505 bool CanComposeInline() override; |
| 506 void DidCommitCompositorFrame() override; | 506 void DidCommitCompositorFrame() override; |
| 507 void InstrumentWillBeginFrame(int frame_id) override; | 507 void InstrumentWillBeginFrame(int frame_id) override; |
| 508 void InstrumentDidBeginFrame() override; | 508 void InstrumentDidBeginFrame() override; |
| 509 void InstrumentDidCancelFrame() override; | 509 void InstrumentDidCancelFrame() override; |
| 510 void InstrumentWillComposite() override; | 510 void InstrumentWillComposite() override; |
| 511 void DidCompletePageScaleAnimation() override; | 511 void DidCompletePageScaleAnimation() override; |
| (...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1059 // use the Observer interface to filter IPC messages and receive frame change | 1059 // use the Observer interface to filter IPC messages and receive frame change |
| 1060 // notifications. | 1060 // notifications. |
| 1061 // --------------------------------------------------------------------------- | 1061 // --------------------------------------------------------------------------- |
| 1062 | 1062 |
| 1063 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1063 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1064 }; | 1064 }; |
| 1065 | 1065 |
| 1066 } // namespace content | 1066 } // namespace content |
| 1067 | 1067 |
| 1068 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1068 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |