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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, | 501 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, |
502 blink::WebAXEvent event); | 502 blink::WebAXEvent event); |
503 virtual void handleAccessibilityFindInPageResult( | 503 virtual void handleAccessibilityFindInPageResult( |
504 int identifier, | 504 int identifier, |
505 int match_index, | 505 int match_index, |
506 const blink::WebAXObject& start_object, | 506 const blink::WebAXObject& start_object, |
507 int start_offset, | 507 int start_offset, |
508 const blink::WebAXObject& end_object, | 508 const blink::WebAXObject& end_object, |
509 int end_offset); | 509 int end_offset); |
510 virtual void didChangeManifest(blink::WebLocalFrame*); | 510 virtual void didChangeManifest(blink::WebLocalFrame*); |
| 511 virtual bool enterFullscreen(); |
| 512 virtual bool exitFullscreen(); |
511 | 513 |
512 // WebMediaPlayerDelegate implementation: | 514 // WebMediaPlayerDelegate implementation: |
513 void DidPlay(blink::WebMediaPlayer* player) override; | 515 void DidPlay(blink::WebMediaPlayer* player) override; |
514 void DidPause(blink::WebMediaPlayer* player) override; | 516 void DidPause(blink::WebMediaPlayer* player) override; |
515 void PlayerGone(blink::WebMediaPlayer* player) override; | 517 void PlayerGone(blink::WebMediaPlayer* player) override; |
516 | 518 |
517 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move | 519 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move |
518 // this back to private member. | 520 // this back to private member. |
519 void OnNavigate(const FrameMsg_Navigate_Params& params); | 521 void OnNavigate(const FrameMsg_Navigate_Params& params); |
520 | 522 |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 #endif | 852 #endif |
851 | 853 |
852 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 854 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
853 | 855 |
854 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 856 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
855 }; | 857 }; |
856 | 858 |
857 } // namespace content | 859 } // namespace content |
858 | 860 |
859 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 861 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |