OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 void OnSetCompositionFromExistingText( | 569 void OnSetCompositionFromExistingText( |
570 int start, int end, | 570 int start, int end, |
571 const std::vector<blink::WebCompositionUnderline>& underlines); | 571 const std::vector<blink::WebCompositionUnderline>& underlines); |
572 void OnExtendSelectionAndDelete(int before, int after); | 572 void OnExtendSelectionAndDelete(int before, int after); |
573 void OnReload(bool ignore_cache); | 573 void OnReload(bool ignore_cache); |
574 void OnTextSurroundingSelectionRequest(size_t max_length); | 574 void OnTextSurroundingSelectionRequest(size_t max_length); |
575 void OnAddStyleSheetByURL(const std::string& url); | 575 void OnAddStyleSheetByURL(const std::string& url); |
576 void OnSetupTransitionView(const std::string& markup); | 576 void OnSetupTransitionView(const std::string& markup); |
577 void OnBeginExitTransition(const std::string& css_selector, | 577 void OnBeginExitTransition(const std::string& css_selector, |
578 bool exit_to_native_app); | 578 bool exit_to_native_app); |
| 579 void OnRevertExitTransition(); |
579 void OnHideTransitionElements(const std::string& css_selector); | 580 void OnHideTransitionElements(const std::string& css_selector); |
580 void OnShowTransitionElements(const std::string& css_selector); | 581 void OnShowTransitionElements(const std::string& css_selector); |
581 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 582 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
582 void OnDisownOpener(); | 583 void OnDisownOpener(); |
583 #if defined(OS_ANDROID) | 584 #if defined(OS_ANDROID) |
584 void OnSelectPopupMenuItems(bool canceled, | 585 void OnSelectPopupMenuItems(bool canceled, |
585 const std::vector<int>& selected_indices); | 586 const std::vector<int>& selected_indices); |
586 #elif defined(OS_MACOSX) | 587 #elif defined(OS_MACOSX) |
587 void OnSelectPopupMenuItem(int selected_index); | 588 void OnSelectPopupMenuItem(int selected_index); |
588 void OnCopyToFindPboard(); | 589 void OnCopyToFindPboard(); |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 #endif | 816 #endif |
816 | 817 |
817 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 818 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
818 | 819 |
819 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 820 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
820 }; | 821 }; |
821 | 822 |
822 } // namespace content | 823 } // namespace content |
823 | 824 |
824 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 825 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |