| 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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, | 470 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, |
| 471 blink::WebAXEvent event); | 471 blink::WebAXEvent event); |
| 472 virtual void handleAccessibilityFindInPageResult( | 472 virtual void handleAccessibilityFindInPageResult( |
| 473 int identifier, | 473 int identifier, |
| 474 int match_index, | 474 int match_index, |
| 475 const blink::WebAXObject& start_object, | 475 const blink::WebAXObject& start_object, |
| 476 int start_offset, | 476 int start_offset, |
| 477 const blink::WebAXObject& end_object, | 477 const blink::WebAXObject& end_object, |
| 478 int end_offset); | 478 int end_offset); |
| 479 virtual void didChangeManifest(blink::WebLocalFrame*); | 479 virtual void didChangeManifest(blink::WebLocalFrame*); |
| 480 virtual bool enterFullscreen(); |
| 481 virtual bool exitFullscreen(); |
| 480 | 482 |
| 481 // WebMediaPlayerDelegate implementation: | 483 // WebMediaPlayerDelegate implementation: |
| 482 void DidPlay(blink::WebMediaPlayer* player) override; | 484 void DidPlay(blink::WebMediaPlayer* player) override; |
| 483 void DidPause(blink::WebMediaPlayer* player) override; | 485 void DidPause(blink::WebMediaPlayer* player) override; |
| 484 void PlayerGone(blink::WebMediaPlayer* player) override; | 486 void PlayerGone(blink::WebMediaPlayer* player) override; |
| 485 | 487 |
| 486 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move | 488 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move |
| 487 // this back to private member. | 489 // this back to private member. |
| 488 void OnNavigate(const FrameMsg_Navigate_Params& params); | 490 void OnNavigate(const FrameMsg_Navigate_Params& params); |
| 489 | 491 |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 #endif | 817 #endif |
| 816 | 818 |
| 817 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 819 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 818 | 820 |
| 819 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 821 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 820 }; | 822 }; |
| 821 | 823 |
| 822 } // namespace content | 824 } // namespace content |
| 823 | 825 |
| 824 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 826 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |