| 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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, | 478 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, |
| 479 blink::WebAXEvent event); | 479 blink::WebAXEvent event); |
| 480 virtual void handleAccessibilityFindInPageResult( | 480 virtual void handleAccessibilityFindInPageResult( |
| 481 int identifier, | 481 int identifier, |
| 482 int match_index, | 482 int match_index, |
| 483 const blink::WebAXObject& start_object, | 483 const blink::WebAXObject& start_object, |
| 484 int start_offset, | 484 int start_offset, |
| 485 const blink::WebAXObject& end_object, | 485 const blink::WebAXObject& end_object, |
| 486 int end_offset); | 486 int end_offset); |
| 487 virtual void didChangeManifest(blink::WebLocalFrame*); | 487 virtual void didChangeManifest(blink::WebLocalFrame*); |
| 488 virtual bool enterFullscreen(); |
| 489 virtual bool exitFullscreen(); |
| 488 | 490 |
| 489 // WebMediaPlayerDelegate implementation: | 491 // WebMediaPlayerDelegate implementation: |
| 490 void DidPlay(blink::WebMediaPlayer* player) override; | 492 void DidPlay(blink::WebMediaPlayer* player) override; |
| 491 void DidPause(blink::WebMediaPlayer* player) override; | 493 void DidPause(blink::WebMediaPlayer* player) override; |
| 492 void PlayerGone(blink::WebMediaPlayer* player) override; | 494 void PlayerGone(blink::WebMediaPlayer* player) override; |
| 493 | 495 |
| 494 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move | 496 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move |
| 495 // this back to private member. | 497 // this back to private member. |
| 496 void OnNavigate(const FrameMsg_Navigate_Params& params); | 498 void OnNavigate(const FrameMsg_Navigate_Params& params); |
| 497 | 499 |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 825 #endif | 827 #endif |
| 826 | 828 |
| 827 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 829 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 828 | 830 |
| 829 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 831 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 830 }; | 832 }; |
| 831 | 833 |
| 832 } // namespace content | 834 } // namespace content |
| 833 | 835 |
| 834 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 836 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |