| 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 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 627 void OnReload(bool ignore_cache); | 627 void OnReload(bool ignore_cache); |
| 628 void OnTextSurroundingSelectionRequest(size_t max_length); | 628 void OnTextSurroundingSelectionRequest(size_t max_length); |
| 629 void OnAddStyleSheetByURL(const std::string& url); | 629 void OnAddStyleSheetByURL(const std::string& url); |
| 630 void OnSetupTransitionView(const std::string& markup); | 630 void OnSetupTransitionView(const std::string& markup); |
| 631 void OnBeginExitTransition(const std::string& css_selector, | 631 void OnBeginExitTransition(const std::string& css_selector, |
| 632 bool exit_to_native_app); | 632 bool exit_to_native_app); |
| 633 void OnRevertExitTransition(); | 633 void OnRevertExitTransition(); |
| 634 void OnHideTransitionElements(const std::string& css_selector); | 634 void OnHideTransitionElements(const std::string& css_selector); |
| 635 void OnShowTransitionElements(const std::string& css_selector); | 635 void OnShowTransitionElements(const std::string& css_selector); |
| 636 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 636 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 637 void OnSnapshotAccessibilityTree(int token); |
| 637 void OnDisownOpener(); | 638 void OnDisownOpener(); |
| 638 void OnDidUpdateSandboxFlags(SandboxFlags flags); | 639 void OnDidUpdateSandboxFlags(SandboxFlags flags); |
| 639 #if defined(OS_ANDROID) | 640 #if defined(OS_ANDROID) |
| 640 void OnSelectPopupMenuItems(bool canceled, | 641 void OnSelectPopupMenuItems(bool canceled, |
| 641 const std::vector<int>& selected_indices); | 642 const std::vector<int>& selected_indices); |
| 642 #elif defined(OS_MACOSX) | 643 #elif defined(OS_MACOSX) |
| 643 void OnSelectPopupMenuItem(int selected_index); | 644 void OnSelectPopupMenuItem(int selected_index); |
| 644 void OnCopyToFindPboard(); | 645 void OnCopyToFindPboard(); |
| 645 #endif | 646 #endif |
| 646 | 647 |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 #endif | 914 #endif |
| 914 | 915 |
| 915 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 916 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 916 | 917 |
| 917 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 918 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 918 }; | 919 }; |
| 919 | 920 |
| 920 } // namespace content | 921 } // namespace content |
| 921 | 922 |
| 922 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 923 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |