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 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
516 void OnExtendSelectionAndDelete(int before, int after); | 516 void OnExtendSelectionAndDelete(int before, int after); |
517 void OnReload(bool ignore_cache); | 517 void OnReload(bool ignore_cache); |
518 void OnTextSurroundingSelectionRequest(size_t max_length); | 518 void OnTextSurroundingSelectionRequest(size_t max_length); |
519 void OnAddStyleSheetByURL(const std::string& url); | 519 void OnAddStyleSheetByURL(const std::string& url); |
520 void OnSetupTransitionView(const std::string& markup); | 520 void OnSetupTransitionView(const std::string& markup); |
521 void OnBeginExitTransition(const std::string& css_selector); | 521 void OnBeginExitTransition(const std::string& css_selector); |
522 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 522 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
523 #if defined(OS_MACOSX) | 523 #if defined(OS_MACOSX) |
524 void OnCopyToFindPboard(); | 524 void OnCopyToFindPboard(); |
525 #endif | 525 #endif |
| 526 void OnDisownOpener(); |
526 | 527 |
527 // Virtual since overridden by WebTestProxy for layout tests. | 528 // Virtual since overridden by WebTestProxy for layout tests. |
528 virtual blink::WebNavigationPolicy DecidePolicyForNavigation( | 529 virtual blink::WebNavigationPolicy DecidePolicyForNavigation( |
529 RenderFrame* render_frame, | 530 RenderFrame* render_frame, |
530 const NavigationPolicyInfo& info); | 531 const NavigationPolicyInfo& info); |
531 void OpenURL(blink::WebFrame* frame, | 532 void OpenURL(blink::WebFrame* frame, |
532 const GURL& url, | 533 const GURL& url, |
533 const Referrer& referrer, | 534 const Referrer& referrer, |
534 blink::WebNavigationPolicy policy); | 535 blink::WebNavigationPolicy policy); |
535 | 536 |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 RendererAccessibility* renderer_accessibility_; | 716 RendererAccessibility* renderer_accessibility_; |
716 | 717 |
717 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 718 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
718 | 719 |
719 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 720 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
720 }; | 721 }; |
721 | 722 |
722 } // namespace content | 723 } // namespace content |
723 | 724 |
724 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 725 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |