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